is there a possibility for drag and drop re-ordering of dom instances in a low-code app?
Hi Jeroen, can you maybe clarify the goal exactly? How are the DOM instances visualized? Is this using the table component?
In DOM, there is no inherent order to the DOM instances. They have values associated where you can sort on. If you want to have a custom order, you could introduce a value that could be used for this (e.g. a sorting integer).
As far as I am aware, the table component does not support drag/drop functionality and the associated events to trigger on. Currently, this could be solved with buttons where you select the row, click a button and then using an interactive script, allow the user to alter the position of the selected row.
The idea was indeed to display the instances in a table and to sort them according to an integer value.
By dragging and dropping the integer values for the instances would be updated to display them higher or lower in the table.