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 - tarunsharma

Pages: [1] 2
1
Hi, have you able to fix this issue? I am also getting the same issue, cellData return "[Object Object]" and I am not able to read that.

2
Hi,

My filter is not working for the columns having reference value as show below. Can you guide me how this will get fix?

title: GS.res.freightRate.TransportTypeLabel, dataType: "string", editable: false, align: "left", minWidth: 120, dataIndx: "TransportationType",
                render: function (ui) {
                    return ui.rowData['TransportationType']['SearchValue'];                   
                }, filter: { crules: [{ condition: 'contain' }], listeners: ['keyup'] },

3
I am trying to read the value from the object to show that on grid but it is not working. For example I need to show "Product Name" from the object called "Product" like this dataIndex: "Product.Name". What is happing it returns multiple records but showing the "Name" only for the first records and for other it is just setting the reference point to first record.
First record example:- Product { Name : XYZ}
Other records example:- Product { $ref: 1}

I am not able to use this reference. Can you guide me how i can use this $ref to show the Name on the grid.

Thank you.

4
Hi,

I am using cascade checkbox for my grid. when i checked checkbox on grouped row, it didnt checked all the checkboxes on the detail rows.
Can you check and let me know if  i am doing something wrong. For your reference i am sharing screenshot.


 groupModel: {
                checkbox: true,
                checkboxHead: true,
                on: true,
                dataIndx: ['CustomerName'],
                menuItems: ['grandSummary'],
                summaryInTitleRow: 'all',
                titleInFirstCol: true,
                fixCols: false,
                indent: 20,
                collapsed: [true],
                title: [
                    "{0} ({1})",
                    "{0} - {1}"
                ],
                useLabel: true
            }

5
I am trying to update summary values using "summaryData". But that is not working. Find an example shown below and let me know if I am doing something wrong. Thanks

var jsonFormat= JSON.stringify(summaryColumnList);
$grid.option("summaryData", [ jsonFormat ]);
$.grid.refresh();

6
I am able to update parent row based upon filtered nested grid using updateRow() method. Now I am facing the problem to update grand summary as par the updated rows of main grid. UpdateRow() method is not working to update summary row. can you suggest something?

7
I tried to update parent row using nested grid filter option but didn't work. I want to change the value of main grid row based upon filtered nested rows. For your reference I am sharing my code.

filter: function (event, ui) {
       var grid = $(".vc-facility-detail").pqGrid('getInstance').grid; //instance of master grid
       grid.updateRow({ rowIndx: 0 });
}

Can you suggest something.

8
I tried to update parent row within nested grid filter option but didn't work. For your reference I am share the code.

filter: function (event, ui) {
       var grid = $(".vc-facility-detail").pqGrid('getInstance').grid; //instance of master grid
       grid.updateRow({ rowIndx: 0 });
}

Can you suggest something.

9
I have parent grid rows are showing sum of their nested records. Nested grid has filter option. I want to ask If I filter nested grid records, is it possible to update parent grids rows accordingly. Can you suggest something?

10
Can anyone from support team look into this issue?

11
I am using format: '###,###.000' on colModel to show three place decimal number. It is showing properly on grid, but if the value is zero then it is not showing properly on export to excel. Can you suggest some solution.

12
Hi, I want to show multiple values in a cell and also want to do filter on that. Can you share your code. Thanks

13
I am calling refreshDataAndView() on nested grid inorder to show updated value, but still struggling to show updated value on parent grid. I tried updateRow() but didn't work can you suggest something?

14
Filtered nested grid.

15
I created the custom method to filter nested grid row and it will set row visibility to hidden, if search value does not match with row vale. it is working fine the only problem is when row is hidden I need to reset the grid height. For example in first image there are three row in the nested grid having region 30,30 and 35. When I am doing filter on 35 it will hide first two rows as shown in image two but showing blank space. I want to remove that blank space so that is will show only one nested record. As par my understanding i need to resize nested grid height. Can you help me out in this?

Pages: [1] 2