Hi Moses,
Greetings from Syncfusion support.
We don’t have the support for turn off the responsive layout of Swimlane rows, so we have already considered “Turn on/off the responsive layout of swimlane rows in Kanban” as a feature request from our end and logged the report for the same and the fix will be included with any of our upcoming releases.
You can now track the current status of the report, review the proposed resolution timeline, and contact us for any further inquiries through this link:
In the meantime, you can achieve normal swimlane layout with limited functionalities by disabling isAdaptive property using Kanban object when dataBinding event is triggered. Can you find the below code and sample for your reference.
|
var kanbanObj = new ej.kanban.Kanban({
dataBinding: dataBinding,
});
function dataBinding() {
if (kanbanObj.isAdaptive) {
kanbanObj.isAdaptive = false; // Disable isAdaptive property
}
} |
Regards,
Buvana S