JavaScript UI Libraries & Blazor Components Suite – Smart UI › Forums › Kanban › How to translate in french kanban component › Reply To: How to translate in french kanban component
Hi Christian Sammut,
Thank you for your interest in our products!
You can ‘translate’ the Kanban component using its Locale
and Messages
properties. More information about the you can find in the API documentation of the Kanban component.
For your second question by default this functionality is not supported at the time being but there is a JavaScript workaround for this use case.
window.onload = () => {
<div>
<div> const kanban = document.querySelector('smart-kanban');</div>
<div> kanban.addEventListener('open', (event)=> {</div>
<div> const editWindow = document.querySelector('.smart-kanban-window'),</div>
<div> editForm = editWindow.querySelector('.edit');</div>
<div></div>
<div> let newFormElement = document.createElement('smart-multi-combo-input');</div>
<div> editForm.children[1].remove()</div>
<div> editForm.appendChild(newFormElement);</div>
<div> });</div>
<div>};</div>
<div>
</div>
<div></div>
<div>If you urgently need this functionality you can request custom development for this functionality by contacting sales@jqwidgets.com.</div>
Please, do not hesitate to contact us if you have any additional questions.Best regards,
Yavor Dashev
Smart UI Team
https://www.htmlelements.com/</div>
<div></div>
</div>
</div>
</div>
- This reply was modified 2 years, 10 months ago by Yavor Dashev.