Author Topic: On edit column first row removed  (Read 2385 times)

EPM Solutions

  • Pro Ultimate
  • Full Member
  • *
  • Posts: 182
    • View Profile
On edit column first row removed
« 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.





EPM Solutions

  • Pro Ultimate
  • Full Member
  • *
  • Posts: 182
    • View Profile
Re: On edit column first row removed
« Reply #1 on: October 03, 2017, 05:41:54 pm »
Hello Support team,

Please find attached file for above issue.

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6298
    • View Profile
Re: On edit column first row removed
« Reply #2 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"

EPM Solutions

  • Pro Ultimate
  • Full Member
  • *
  • Posts: 182
    • View Profile
Re: On edit column first row removed
« Reply #3 on: October 04, 2017, 08:16:29 am »
 It works thanks for your quick response :) :)
« Last Edit: October 04, 2017, 09:56:40 am by pankajs »