Hello,
When I add fields using this way. The toggle swimlane option is not working.
If I use fields like this way its working. Can I get a fix for this?
Other options are working fine, Cards are loading.
Thank you
Hi Kavishka,
Greetings from Syncfusion support,
Currently we are validating your reported query with your shared information, and we will update you the details on or before 2nd Feb 2023. Until then we appreciate your patience.
Regards,
Indrajith
Hello,
I changed the sample like this way. Added the Kanban board control similar to my application. The cards wont load because somehow its now taking the jQuery code. Can you send me the fixed code similar to this without passing JSON DataSource in jQuery object?
https://drive.google.com/file/d/1TkO5-6FDae61w1pKngnim5ZWD3Wt0Evw/view?usp=share_link
Thank you.
<ej:Kanban ID="KanbanBoard22" runat="server" KeyField="Status" AllowToggleColumn="true" > <ClientSideEvents Create="Created" /> <script> function Created() { var KanObj = $("#<%= KanbanBoard22.ClientID %>").data("ejKanban"); KanObj.setModel({ columns: [{ headerText: "Testing", key: "Testing" }, { headerText: "Validate", key: "Validate" }, { headerText: "Open", key: "Open" }], keyField: "Status", fields: { primaryKey: "Id", content: "Summary", swimlaneKey: "Assignee", title: "Id" } }) } </script> |