ParamQuery grid support forum

General Category => Bug Report => Topic started by: carlossantillan on December 13, 2017, 01:59:51 am

Title: Bath addRow to grid initialize correctly first 15 rows
Post by: carlossantillan on December 13, 2017, 01:59:51 am
Hi,

im using  grid.addRow({ rowList: rowListarray}); and my grid has a DetailModel. Succesfully y add the 20 rows as this for each row:
   var   rowDataa = {
                                                               newRow:
                                                               { 
                                                                    implbl:"Impuestos",   
                                                                    noid:noid,
                                                                                  clv:arreglocampos[3],   
                                                                    },
                                                                    rowIndx: (i)
                                                         };   

impuestos is my detailModel that is another grid. I iterate through grid.rowExpand({ rowIndx: y });  to initialize every row detail grid and first 14 rows initialize perfect the DetailModel, but begining at row 15 not initialize correctly the detail grid
Title: Re: Bath addRow to grid initialize correctly first 15 rows
Post by: paramvir on December 13, 2017, 09:44:08 am
Please share a jsfiddle.
Title: Re: Bath addRow to grid initialize correctly first 15 rows
Post by: carlossantillan on December 19, 2017, 02:36:11 am
thanks... i resolve put a editFirstCellRow every time i add a row... dont understand why.....