ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: necatiozbek on July 24, 2024, 01:24:33 am

Title: colModel instead of index number Can we use the name dataIndx-fieldname
Post by: necatiozbek on July 24, 2024, 01:24:33 am
 obj_grid.colModel[5].render= function (ui)
{
...
..
}


Can we use dataIndx-fieldname instead of index number
instead of Wouldn't it be nice if we could use. Because even if we change the model location, we do not have to make any changes in the function.


 obj_grid.colModel['fieldname'].render= function (ui)
{
...
..
}
Title: Re: colModel instead of index number Can we use the name dataIndx-fieldname
Post by: paramvir on July 24, 2024, 06:47:10 am
colModel is an array of columns, so it can be written like this

obj_grid.colModel.find( col => col.dataIndx == 'fieldname').render = function (ui){...}