Good day
One of your Kanban examples shows
<e-kanban-cardsettings headerField="Id" contentField="Summary" ></e-kanban-cardsettings>
where the header field is the record key so it would not be modified.
I created a Kanban with
<e-kanban-cardsettings headerField="Title" grabberField="Colour" contentField="Summary"></e-kanban-cardsettings>
with a header field of Title which I modify in the dialog and I have an Id field created in the database but I am observing unexpected behaviour. If I change the content field the card updates and refreshes as expected. If I change the header field the card updates but does not refresh so I still see the previous value.
I am also using Tooltip
<ejs-kanban id="Kanban" keyField="Status" dialogOpen="onDialogOpen" enableTooltip="true" tooltipTemplate="#tooltipTemp" created="onKanbanCreated" actionComplete="onActionComplete">
hovering over the card on updating the header field displays
VM44:3 Uncaught TypeError: Cannot read property 'Title' of undefined
at Object.eval (eval at A (constants.js:93), <anonymous>:3:204)
at constants.js:93
at e.onBeforeRender (constants.js:93)
at e.notify (constants.js:93)
at t.e.trigger (constants.js:93)
at t.showTooltip (constants.js:93)
at t.targetHover (constants.js:93)
Is this expected behaviour? Is the header field not supposed to be modified within the Kanban control?
Thank you
Ronald