JavaScript UI Libraries & Blazor Components Suite – Smart UI Forums Kanban How to translate in french kanban component

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #102655
    Christian Sammut
    Participant

    Hello, I’m developping an application in blazor and I’m looking for a kanban component.

    So I’m testing your component an my questions are :

    1. How to translate in french the edit task form ?
    2. How to manage  the fields in this edit task form (remove some items and add other items) ?

    Thank you for your answer.

    #102656
    Yavor Dashev
    Participant

    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, 4 months ago by Yavor Dashev.
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.