Is there a way to make the "to-do" "in progress" "in review" and "closed" headers fixed in that position on scroll
.e-kanban .e-kanban-content {
height: 500px;
} |
How to achieve Jira Board scrolling behavior when scrolling up and down and only the content is scrollable?
<KanbanComponent id="kanban" cssClass="kanban-swimlane" ref={(kanban) => { kanbanObj = kanban; }} keyField="Status" dataSource={data} cardSettings={{ contentField: 'Summary', headerField: 'Id' }} swimlaneSettings={{ keyField: 'Assignee', enableFrozenRows: 'true', }} height="500px" > <ColumnsDirective> <ColumnDirective headerText="To Do" keyField="Open" /> <ColumnDirective headerText="In Progress" keyField="InProgress" /> <ColumnDirective headerText="Done" keyField="Close" /> </ColumnsDirective> </KanbanComponent> |
Thanks for the reply. But how can I froze this column header and continue scrolling with the content/cards. Thank you.
.e-kanban .e-kanban-content { height: 500px; } <KanbanComponent id="kanban" swimlaneSettings={{ keyField: 'Assignee', enableFrozenRows: 'true', }} height="500px"> </KanbanComponent> |
Is there a way to remove the grid lines while dragging the card? And make it smoother while dragging left, right, top and bottom? Thank you in advance.