ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: EPM Solutions on October 03, 2017, 02:51:39 pm
-
Hello Support team,
When i tried to edit column from last row it will delete the first row from grid.
For ex.
This is my grid
row-1 col-1 col-2 col-3(resulted col)
row-2 col-1 col-2 col-3(resulted col)
now if i try to update row-2 col-1 or col-2 it will delete my first row.
resulted
row-2 col-1 col-2 col-3(resulted col)
i also apply formula on grid like col-3 = col-1 * col-2;
code :
formulas: [
["col-3(result)", function(rd) {
console.log(rd);
return rd.col-1(val) * rd.col-2(val);
}]
]
And please find attached image file for reference.
-
Hello Support team,
Please find attached file for above issue.
-
It looks similar issue to this. https://paramquery.com/forum/index.php?topic=2079.0
Please use virtualY: false if height is "flex"
-
It works thanks for your quick response :) :)