This topic contains 5 replies, has 2 voices, and was last updated by Todor 4 years ago.
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic.
jQuery UI Widgets › Forums › Layouts › Kanban › Reload Items Source
This topic contains 5 replies, has 2 voices, and was last updated by Todor 4 years ago.
Hello guys,
I’ve seen i can reload the columns at any moment and they change on my screen:
var columnsAux: any[] = [
{text:’Backlog’, dataField:’a’},
{text:’Sprint 1.4′, dataField:’b’},
{text:’Sprint 1.3′, dataField:’c’}
];
this.columns = columnsAux;
I want to do the same but with the items of the Kanban. I tried this :
this.source.localData = [];
this.resources = [];
but anything changed on my screen, is there any solution to this ?
Best regards,
Pablo.
Hello pabjiiz,
You could review the following example whether it fits your needs.
Best Regards,
Todor
jQWidgets Team
https://www.jqwidgets.com
Hello Todor,
This is what I was looking for!!!
But I’m working with Angular and I do not know ho to do it …
Best Regards,
Pablo
Hello pabjiiz,
Please find the following example with Angular. Take a note that I’ve used a little different approach for deleting all Kanban items.
Let us know if you need further assistance.
Best Regards,
Todor
jQWidgets Team
https://www.jqwidgets.com
But , instead of deleting all Kanban items if i write this :
this.myKanban.source( new jqx.dataAdapter(this.source));
the kanban items are duplicating ?
Hello pabjiiz,
Thank you for the feedback! We have created a work item for this case. For now you could use removeItem method like the example in my previous post.
Best Regards,
Todor
jQWidgets Team
https://www.jqwidgets.com
You must be logged in to reply to this topic.