|
KanbanFeatures.cshtml
@(Html.EJ().Kanban("Kanban")
.Columns(col => // Specified all column width
{
col.HeaderText("Backlog").Key("Open").Width(500).Add();
col.HeaderText("In Progress").Key("InProgress").Width(400).Add();
col.HeaderText("Testing").Key("Testing").Width(600).Add();
col.HeaderText("Done").Key("Close").Width(400).Add();
})
.AllowScrolling(true) // Set Allow scrolling property
………………
) |
|
KanbanFeatures.cshtml
<style> // You can set following css properties
.e-kanban .e-table, .e-kbnadapt-editdlg .e-table {
table-layout: fixed;
width: auto;
}
.e-kanban .e-headercell, .e-kanban .e-columnrow .e-rowcell, .e-kanban .e-table col {
width: 200px !important; // Here, you can set column width
}
</style> |