Kanban control render error while use loadCultureFiles function

Hi.

I'm trying the kanban control in one of my projects. When i use the "loadCultureFiles" to set my controls strings in spanish, the kanban control does not render correctly.

can u help me with this?



Attachment: kanban_cb2fe199.rar

2 Replies

JA Javier A Aguilera March 24, 2020 11:43 PM UTC

forgot to attach the view with the control. Sorry

Attachment: kanban_9ece4efa.rar


BS Balasubramanian Sattanathan Syncfusion Team March 25, 2020 05:25 PM UTC

Hi Javier A Aguilera, 

Greetings from Syncfusion Support. 

We have validated your reported scenario at our end. We suspect that you didn’t add the below highlighted property in your project. So which could be cause for the reported problem. For your reference, we have prepared a sample based on your scenario using below code snippet. 

<ejs-kanban keyField="Status" locale="es-MX" dataSource="@ViewBag.data"> 
    <e-kanban-columns> 
        <e-kanban-column headerText="To Do" keyField="Open"></e-kanban-column> 
        <e-kanban-column headerText="In Progress" keyField="InProgress"></e-kanban-column> 
        <e-kanban-column headerText="Testing" keyField="Testing"></e-kanban-column> 
        <e-kanban-column headerText="Done" keyField="Close"></e-kanban-column> 
    </e-kanban-columns> 
    <e-kanban-cardsettings contentField="Summary" headerField="Title"></e-kanban-cardsettings> 
    <e-kanban-swimlanesettings keyField="Assignee"></e-kanban-swimlanesettings> 
</ejs-kanban> 
<script> 
    ej.base.L10n.load({ 
        'es-MX': { 
            'kanban': { 
                'items': 'items', 
                'min': 'Min', 
                'max': 'Max' 
            } 
        } 
    }) 
</script> 



Kindly try the above solution and let us know if you have any concerns. 

Regards, 
Balasubramanian S 


Loader.
Up arrow icon