Nice feature. I would like to use it on my IG. I hope you fix it soon.
I installed the plugin following steps 1-6. No custom handler class.
It works with few rows of data.
If there is many rows (170 in my case), so no all rows are shown on screen, some rows get value "undefined" in order column.
If you scroll down to the last row, first and then change row order, it works fine.
It also works if you choose pagination on IG and choose 1000 rows per page, as long as you don't have more then 1000 rows.
I suspect
model.forEach(function (r) {
var record = r;
var order = model.getValue(record, order_column_id);
currentOrderArray.push(order);
});
in updateOrder js function doesen't get order values for all rows in IG.
P.S.
It would be nice if sort would work on number fields also. Numbers are common values for ordering rows. Your order does text sort only.
Nice feature. I would like to use it on my IG. I hope you fix it soon.
I installed the plugin following steps 1-6. No custom handler class.
It works with few rows of data.
If there is many rows (170 in my case), so no all rows are shown on screen, some rows get value "undefined" in order column.
If you scroll down to the last row, first and then change row order, it works fine.
It also works if you choose pagination on IG and choose 1000 rows per page, as long as you don't have more then 1000 rows.
I suspect
in updateOrder js function doesen't get order values for all rows in IG.
P.S.
It would be nice if sort would work on number fields also. Numbers are common values for ordering rows. Your order does text sort only.