ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: sshede on August 20, 2021, 03:31:35 pm
-
Hi,
How to Drag n drop column by dianamic.
-
How do you mean by dynamic drag and drop. Could you please share some kind of use case or example.
-
Hi,
I have one dropdown, this droptown call onchange function this function shift 2 colum to after 4th colum.
Thanks,
Sagar Shede
-
Please use Columns().move API
https://paramquery.com/pro/api#method-Columns
//move 1 column from 2 index to 4 index.
grid.Columns().move(1, 2, 4);
-
thanks for replay
-
Hi,
Below option have in 3.5 version .
grid.Columns().move(1, 2, 4);
Thanks,
Sagar Shede
-
It doesn't work in v3.5, it's supported since v7.1.0
-
any other way
-
colModel is a js array, so js array manipulation method "splice" can be used to rearrange the columns followed by call to refreshCM method.
https://paramquery.com/pro/api#method-refreshCM