
The Kanban swim lanes can be collapsed/expanded.
- This feature is disabled by default. You can enable it using SwimlaneCollapsingEnabled property.
JavaScript
You can set the initial swimlane state using collapsed property.
<div id="dp"></div>
<script type="text/javascript">
var dp = new DayPilot.Kanban("dp");
dp.swimlaneCollapsingEnabled = true;
dp.swimlanes.list = [
{name: "Swimlane A", id: "A"},
{name: "Swimlane B", id: "B", collapsed: true}
];
dp.init();
</script>
Availability
Availability of this feature in DayPilot editions:
| Lite | Pro | |
|---|---|---|
| DayPilot for JavaScript | ||
| DayPilot for ASP.NET WebForms | ||
| DayPilot for ASP.NET MVC | ||
| DayPilot for Java |
DayPilot