Hi Florian,
Thanks for your update.
We are glad to announce that our feature request “Render Kanban column using without data source” was included in our Essential Studio Volume 4 Release v15.4.0.17. Please refer the following release notes page.
Now, you can use “showColumnWhenEmpty” property for displaying columns when no data is available.
Query #1: “I would like an option to keep the swimlane visible even when there are no cards in the swimlane.”
In default, Kanban Swimlane was not visible when no cards in the swimlane. If you wish to swimlane visible when no cards in the swimlane at initial level, you can use keyFiltering property of load event.
This keyFiltering property used to enable or disable the query of Kanban board. It provides option to turn off column key filtering. If keyFiltering property was enabled, current view data shows filtered data based on columns. If keyFiltering property was disabled, current view data shows all data’s in the data source.
If you set to false on keyFiltering property, the empty swimlane row was rendered on Kanban board at initial rendering. Because, current view data contains all data source data’s. Based on this current view data, swimlane row was created at initial level.
Please find the below code.
Default.html
$("#Kanban").ejKanban({
……….
load: "load", // load event
});
function load(args){ // Triggered when Kanban was loaded
args.keyFiltering = false; // Disable keyFiltering
}
|
For your convenience, we have prepared a simple sample. Please find the below link.
To know more about the ejKanban component members. Please refer the below reference.
Please let us know if we have misunderstood. If so, provide more exact details regarding your requirement so that we can check and provide an appropriate solution.
Regards,
Buvana S.