Hi jqWidgets team!
Assume that I have a grid with two column,Like below
Value Code
a 001
b 101
When I add a row with data {Value:c, Code:002},
the grid should be like this and select the added row
Value Code
a 001
c 002
b 101
The added row found its position according to column Code,
I have read the documentation.And the API only afford a way to add at the first or the last line.
I tried to figure it out with “updatebounddata”(with parameter ‘cells’ or ‘data’) and “sortby”,
but it cost about 2 seconds when the grid has 900 row’s data
Can you tell me another way to achieve the demand or give me some suggestion on improving the performance?
Thanks very much!!!