You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying now to implement a shop category edit/sorting function with jkanban where each board represents a certain hierarchy level...
When I set the top levels in a board like this:
'item' : [ { 'id': 1, 'title':'<input type="text" value="Living">', },
I can get the the clicked item with "el.dataset.eid" and load via Ajax the next level into the second board, where I then also set the id dynamically:
kanban1.addElement('_working', { title: '<input type="text" value="' + data[i].name + '">', id: data[i].id, });
But when looking at the inspector in firefox I don't see any data-eid="x" set...so clicking on the second level items have no effect...
How can I set this data-eid so it can be used in the click handler?
thanks in advance
richard
The text was updated successfully, but these errors were encountered:
Thanks for opening a new issue. The team has been notified and will review it as soon as possible.
For urgent issues and priority support, visit https://xscode.com/riktar/jkanban
Trying now to implement a shop category edit/sorting function with jkanban where each board represents a certain hierarchy level...
When I set the top levels in a board like this:
'item' : [ { 'id': 1, 'title':'<input type="text" value="Living">', },
I can get the the clicked item with "el.dataset.eid" and load via Ajax the next level into the second board, where I then also set the id dynamically:
kanban1.addElement('_working', { title: '<input type="text" value="' + data[i].name + '">', id: data[i].id, });
But when looking at the inspector in firefox I don't see any data-eid="x" set...so clicking on the second level items have no effect...
How can I set this data-eid so it can be used in the click handler?
thanks in advance
richard
The text was updated successfully, but these errors were encountered: