ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: EPM Solutions on October 03, 2017, 02:51:39 pm

Title: On edit column first row removed
Post 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.




Title: Re: On edit column first row removed
Post by: EPM Solutions on October 03, 2017, 05:41:54 pm
Hello Support team,

Please find attached file for above issue.
Title: Re: On edit column first row removed
Post by: paramvir on October 03, 2017, 05:54:00 pm
It looks similar issue to this. https://paramquery.com/forum/index.php?topic=2079.0

Please use virtualY: false if height is "flex"
Title: Re: On edit column first row removed
Post by: EPM Solutions on October 04, 2017, 08:16:29 am
 It works thanks for your quick response :) :)