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

Pages: [1]
1
Help for ParamQuery Pro / Re: DropDown Editor
« on: April 04, 2014, 10:53:17 am »
Hi,

According to your refrence I have implement below code but it is not working.

{title: "VP Assesment", width: 100, dataType: "string", dataIndx: "vp_assessment",
             editor: {type: 'select',cls:'prvp',  options: ['','YES' ,'NO'],getData: function(ui) {
     var val = ui.$cell.find("select").val(),
        rowData = ui.rowData;
console.log(rowData);
     if( val == 'YES' )
       rowData['editable']=true;
     else if(val == 'NO')
       rowData['editable']=false;
       else
       rowData['editable']=true;
  }
                    },
                           
            
            filter: {type: 'select',
                        options: ['','YES' ,'NO'],
                        condition: 'equal',
                        listeners: [{change: function(evt, ui) {
                                    filter("vp_assessment", $(this).val());
                                }
                            }]
                    }
            },
            
            {title: "Planning Meeting", width: 100, dataType: "string", dataIndx: "planning_meeting",
            editor: {
                        type: dateEditor,
                    }


 var column = $grid.pqGrid('getColumn',  { dataIndx: 'planning_meeting'} );
                    $("#grid_editing").on( "change", ".prvp", function() { 
                    $grid.pqGrid( 'saveEditCell' );
                });
                 $("#grid_editing").pqGrid( {editable:column.editable = function (ui){
   return ui.rowData['editable'];
}} );



Please let me know what I am doing wrong.

2
Help for ParamQuery Pro / Excel Export
« on: April 03, 2014, 04:01:53 pm »
Hi,

I am using excel export, in which I have 2 issue as below:

1) Extension is coming XML.
2) I have applied classes to style the rows and column but when we export the excel it remove the colors from rows and columns.

Please guide.

3
Help for ParamQuery Pro / Re: DropDown Editor
« on: April 03, 2014, 11:52:33 am »
Please find attached screenshot

4
Help for ParamQuery Pro / Re: DropDown Editor
« on: April 03, 2014, 10:38:44 am »
Hi

Hope you are well.

I have attached screen shot, in which there are one column in red circle have drop-down of values.
I need to change the column marked in square, editable or not editable depend on circle marked column value.

Please let me know how can I achieve this.

Thanks

5
Help for ParamQuery Pro / Re: DropDown Editor
« on: April 02, 2014, 07:03:33 pm »
We  are not saving the value.

Is there any method that we can get rowindex and colindex of dropdown cell.

Thanks

6
Help for ParamQuery Pro / Re: DropDown Editor
« on: April 02, 2014, 06:33:38 pm »
Thanks For your response.

The above code I have used and it does editable false for all column of particular dataindex, but I need to change editable false for a single cell.

Please help.

THanks

7
Help for ParamQuery Pro / DropDown Editor
« on: April 02, 2014, 02:14:04 pm »
Hi,

I am using pro version of script.

I have used editor type select for dropdown.

I need to make another cell editable or not editable on the base of dropdown value.

Please help me that how can I achieve this.

Thanks

8
Help for ParamQuery Pro / Group without sort
« on: March 12, 2014, 04:50:39 pm »
one more thing when I am applying grouping then it sorting the data according to group dataindex, but I don't want to use this sorting.

Please let me know how I can disable the sorting in case of grouping.

9
Help for ParamQuery Pro / Row Grouping
« on: February 25, 2014, 12:22:13 pm »
Hi,

I am displaying the products in grid, within order.
A order can have more than one product so I am looking to group the order if there is more than one product.

I am using the below code

groupModel:{
            dataIndx: ["task_number"],               
            collapsed: [ false, false],
            title: ["<b style='font-weight:bold;'>{0} ({1} Products)</b>","{1} - {2}"],
            dir: ["up","down"]
            ,icon: ["circle-plus"]
            }

But it is grouping also the order which have only single product.

Any suggestion.

Thanks in advance.

Pages: [1]