Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - carlossantillan

Pages: [1]
1
Bug Report / Re: Bath addRow to grid initialize correctly first 15 rows
« on: December 19, 2017, 02:36:11 am »
thanks... i resolve put a editFirstCellRow every time i add a row... dont understand why.....


2
Bug Report / Bath addRow to grid initialize correctly first 15 rows
« 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

3
Autocomplete item in grid cell dissapear when there is many items in list and need to overflow or scroll.

When this autocomplete is in toolbar there's no same problem. even has more than 100 items in autocomplete shows without problem. The problem only happens in cell Autocomplete editor.


4
Hi,

i have a product grid with more than 1 page (15 pages) with 10 row per page with  selectionModel: { type: 'row', mode: 'block' },. When i get selected rows from first page it works perfect with function

     var ids = this.SelectRow().getSelection().map(function(rowList){                           
                                   return rowList.rowData.id;
                               }); 

The problem is when i move forward to 2, 3 or next pages and get selected rows and shows a error:

Uncaught TypeError: Cannot read property 'pq_rowselect' of undefined
    at n.getSelection (pqgrid.min.js:17:7043)
    at e.(anonymous function).(anonymous function).listener (eval at <anonymous>

Pages: [1]