ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: edasilv on October 27, 2021, 03:24:00 am
-
How to get the remaining columns values and row values after hidden columns?
I do not edit or delete cells, rows, and columns, just hidden columns.
-
Columns.reduce API can be used to get new colModel without hidden columns.
https://paramquery.com/pro/api#method-Columns
var colModel2 = grid.Columns().reduce(function(column){
return column.hidden? null: column; //column.hidden is true for hidden columns.
});