Responsive Mode

Hi Syncfusion Team


I would like to know if it is possible to disable the responsive mode for the Kanban control. I'm only using one column for the Kanban Control and I don't need the responsive mode: (Swimlane Layout). I would like the kanban control to keep using the default layout when I'm using a mobile device since I'm only using one column.


Thanks.

Moses


3 Replies 1 reply marked as answer

BS Buvana Sathasivam Syncfusion Team January 31, 2022 09:05 AM UTC

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 
 



MD Mah Dit Moussa Cisse January 31, 2022 09:49 AM UTC

Thanks a lot Buvana.

The code that you have provided works for me.


Marked as answer

BS Buvana Sathasivam Syncfusion Team February 1, 2022 05:58 AM UTC

Hi Mah, 

We are happy to hear your problem has been solved.  Please let us know if you have any further queries.   

Regards, 
Buvana S 


Loader.
Up arrow icon