ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: hirehop on May 18, 2023, 09:00:34 pm

Title: Merge Cell with dynamic row
Post by: hirehop on May 18, 2023, 09:00:34 pm
Hello
I have tried to get dynamic row index to merge cell and value is as per needed but its not working.

my function for get dynamic row value as per below
Code: [Select]
complete: function()
      {
            var data = that.grid.pqGrid("pageData"),
                  merged = [];
            if(!empty(data) )
           {
              $.each(data, function(i,row)
               {
      if(typeof(row["children"])!=="undefined")
      {
    merged.push({r1:i, c1:0, rc:1, cc:3});
       }
                });
           }
           that.grid.pqGrid( "option", "mergeCells",merged);
     },


resopnse as at console from loop in screeshot.


Thank You....
Title: Re: Merge Cell with dynamic row
Post by: paramvir on May 18, 2023, 09:56:45 pm
you need to call grid.refreshView() after setting mergeCells option.
Title: Re: Merge Cell with dynamic row
Post by: hirehop on May 22, 2023, 02:40:55 pm
Thanks a lot.
its working very good.