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

Pages: [1] 2 3
1
ParamQuery Pro Evaluation Support / Download xlxs in nesting Grid
« on: July 13, 2023, 01:17:13 pm »
Hi,

How Can add Download xlxs in below example

https://paramquery.com/pro/demos77/nesting_local

2
Hi,
I try delete row  but giving error.
i am usging pro 7.6

error -  T[c] is not a function

{ title: "Delete", dataIndx: "Delete", editable: false,  width: 70, sortable: false,  render: function (ui) {
                                                    return "<img src='../images/delete-2.png' height='10px' class='deletRow'  title='Delete Row' >"},
                                                    postRender: function (ui) {
                                                        var grid = this;
                                                        grid.deleteRow({ rowIndx: ui.rowIndx });
                                                }
                                            },

3
Help for ParamQuery Pro / Re: Hide Total value of column for group row
« on: September 16, 2021, 11:41:20 am »
I use bit not working.
Can you give working example.

4
Help for ParamQuery Pro / Hide Total value of column for group row
« on: September 15, 2021, 06:57:58 pm »
Below Exmple group total value hide when group is open.
and pivot mode is on off then group total value show
 
https://paramquery.com/pro/demos77/pivot

Set
Page load =  pivot: false

5
Help for ParamQuery Pro / how to hide alternet Checkbox
« on: September 06, 2021, 07:07:44 pm »
Hi,

How to hide alternate Checkbox for below Example.
https://paramquery.com/pro/demos77/selection_checkbox

Thanks,
Sagar Shede

6
Help for ParamQuery Pro / Re: How to Drag n drop columon by dianamic
« on: August 26, 2021, 12:23:04 pm »
any other way

7
Help for ParamQuery Pro / Re: How to Drag n drop columon by dianamic
« on: August 25, 2021, 07:35:50 pm »
Hi,

Below option have in  3.5 version .
grid.Columns().move(1, 2, 4);

Thanks,
Sagar Shede

8
Help for ParamQuery Pro / Re: How to Drag n drop columon by dianamic
« on: August 25, 2021, 01:56:56 pm »
thanks for replay

9
Help for ParamQuery Pro / Re: How to Drag n drop columon by dianamic
« on: August 25, 2021, 10:27:03 am »
Hi,

I have one dropdown, this droptown call onchange function this function shift 2 colum to after 4th colum.

Thanks,
Sagar Shede

10
Help for ParamQuery Pro / How to Drag n drop columon by dianamic
« on: August 20, 2021, 03:31:35 pm »
Hi,

How to Drag n drop column by dianamic.

11
Help for ParamQuery Pro / how to add class for cell
« on: August 18, 2021, 05:14:27 pm »
Hi

Hi How to add class in 2 cell for same row.
Please check below code. Not working below code.

  { title: "Audit", dataType:"string",dataIndx: "actions", width: 70 , cls:'pqImgClass',menuIcon: false,tpHide: true,
                    render : function (ui) {
rowData.pq_cellcls = rowData.pq_cellcls || {};
rowData.pq_cellcls["text1"] ="pqImgClass";
rowData.pq_cellcls["text2"] ="pqImgClass";
 }
                },

12
Hi
Any normal HTML table can be converted into ParamQuery Grid.

this is not avalabel for pro version.
Plz give me exaple.

Thanks,
Aagar Shede

13
Help for ParamQuery Pro / Re: DeletRow function giving erroe
« on: May 03, 2021, 06:30:29 pm »
Hi
I use below demo code . but not working deleteRow functionality.

$(function () {
        var data = [
            { rank: 1, company: 'Exxon Mobil', revenues: 339938.0, profits: 36130.0 },
            { rank: 2, company: 'Wal-Mart Stores', revenues: 315654.0, profits: 11231.0 },
            { rank: 3, company: 'Royal Dutch Shell', revenues: 306731.0, profits: 25311.0 },
            { rank: 4, company: 'BP', revenues: 267600.0, profits: 22341.0 },
            { rank: 5, company: 'General Motors', revenues: 192604.0, profits: -10567.0 },
            { rank: 6, company: 'Chevron', revenues: 189481.0, profits: 14099.0 },
            { rank: 7, company: 'DaimlerChrysler', revenues: 186106.3, profits: 3536.3 },
            { rank: 8, company: 'Toyota Motor', revenues: 185805.0, profits: 12119.6 },
            { rank: 9, company: 'Ford Motor', revenues: 177210.0, profits: 2024.0 },
            { rank: 10, company: 'ConocoPhillips', revenues: 166683.0, profits: 13529.0 },
            { rank: 11, company: 'General Electric', revenues: 157153.0, profits: 16353.0 },
         
        ];
        var frozenRows = [];

        var obj = {
            scrollModel: { autoFit: true },
            showTitle: false,
            resizable: true,
            freezeRows: 2,
            //showHeader: false,
            height: 400,
           
            colModel: [
                { title: "Rank", width: 100, dataType: "integer", dataIndx: "rank" },
                { title: "Company", width: 200, dataType: "string", dataIndx: "company" },
                { title: "Revenues", width: 150, dataType: "float", dataIndx: "revenues", format: '#.0' },
                { title: "Profits", width: 150, dataType: "float", dataIndx: "profits", format: '#.0' }
            ],
            dataModel: { data: data },
            create: function () {
                this.widget().find(".frozen").val(this.option('freezeRows'));
            },
            toolbar: {
                items: [                   
                    {
                        type: 'select',
                        label: 'Select number of frozen rows: ',
                        cls: 'frozen',
                        options: [0, 1, 2, 3, 4, 5, 6, 7, 8],
                        listener: function (evt) {
                            this.option("freezeRows", $(evt.target).val());
                            this.refresh();
                        }                                           
                    },
                    { type: 'separator' },
                    {
                        type: 'checkbox',
                        attr: 'id="sort_all_chk"',
                        label: 'Exclude frozen rows while sorting'
                    },
               {
                  type: 'button',
                  label: 'delete',
                  listener: function(){
                     var grid =  $("#grid_json").pqGrid('getInstance').grid
                      grid.deleteRow({ rowIndx: 4 } );
                  }
                    }
                ]
            }
        };
        $("#grid_freeze_rows").pqGrid(obj);

    });

14
Help for ParamQuery Pro / DeletRow function giving erroe
« on: May 03, 2021, 03:47:14 pm »
Hi,

I use below code.
var grid =  $("#grid_json").pqGrid('getInstance').grid
$("#grid_json").pqGrid("deleteRow", { rowIndx: 1 });

but giving below error
Cannot read property 'element' of undefined

15
Help for ParamQuery Pro / Re: Batch editing
« on: March 15, 2021, 03:16:49 pm »
grid.commit({ type: 'update', rows: gridChangesTamp.updateList});   this is working

grid.commit({ type: 'update', rows: gridChangesTamp.updateList[1]});
but i trying 1 row comment but not working

Pages: [1] 2 3