Hi!
I'm trying to made a local data self-expandible table with cellEdit and auto-sorting.
I.e. last row of the table is always blank, and when user fills the first cell in that line, table must reorder itself and add a blank row at the end. After every edit the hidden input's value must be set to ensure that I can catch entrie array via $_POST.
While I experimented with just 'clientSide', all was almost good – except for one thing: when reordering the data in the lines were mixed in some strange order.
Then I formed data array, and set .setGridParam({ data: … }) to it.
Row adding still works, but data isn't saved anymore.
Second question is how I can made table hard order itself by the first column (len) without letting user to sort any othe way?