Hi ivallo, thanks for reply.
I show you what is my problem, which manifests itself even in the code you posted.
Please add the event “itemAttrClicked” to the code, as shown below (and also rem the other console.log line, for clarity).
It shows the value of the id property of the clicked element.
Well, clicking on the first item appears correctly “1161”.
After pressing “AddItem”, if you clicking on the new item, the “id” property returns an error.
But I would like it contained the new id immediately set.
I hope I was clear.
$('#kanban').jqxKanban({
...
})
.on("itemAttrClicked", function (event) {
console.log(JSON.stringify(event.args.item.id));
});
Thanks in advance for your help.
Dario