hello,
I am trying to update to remote data using a custom dialog. To render the data in the demos a :
| this.state = extend({}, {}, props, true); |
Hi,
How would you refresh the page after adding a new card?
Im using an Adaptor to complete all crud applications but after we add the card we need to refresh the page in order to click on the card to edit.
thank you.
|
OnActionComplete(args) {
if (args.requestType === 'cardCreated') {
var kanbanInstance = this.kanbanObj;
setTimeout(function() {
debugger
kanbanInstance.refresh();
}, 300);
} }<KanbanComponent id="kanban" keyField="Status" dataSource={this.data}
actionComplete={this.OnActionComplete.bind(this)}>
. . . </KanbanComponent> |
Hi. When i refresh it, the page reloads and the toggles i collapsed reopens. Is there a way around this?
|
<KanbanComponent id="kanban" keyField="Status" enablePersistence="true">
. . . </KanbanComponent> |
Hi,
Do you know how to make the header of the Kanban fixed on that position on scroll?
Thank you
|
.e-kanban-header {
position: sticky;
top: 0;
z-index: 1;
} |
|
.e-kanban .e-kanban-content {
height: 500px;
} |