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 - vinay.narasapurapu

Pages: [1]
1
Help for ParamQuery Grid (free version) / Soting on Grouping
« on: November 22, 2021, 10:53:14 am »
Hi,

I have implemented a grid of 4 columns where the grouping on two columns is done. When sorting on column 3,4 is doing the whole grid is changing instead of sorting internally within the group. Can you help me in this.

Version is a free version with 3.5

2
Install npm pqgrid and copy the download the files to nodemodules.

3
Help for ParamQuery Pro / Grandsummary irrespective of pagination
« on: September 26, 2020, 06:27:48 pm »
Hi I have added a grand summary but it is coming based on pagination. Please check the image. in that, I have added the count. But I have both and count and sum where it is showing page wise. Pagination is required

4
Thank you it resolved the issue

5
Help for ParamQuery Pro / Grid data is not updating on change of new data
« on: September 08, 2020, 05:56:41 pm »
Hi,

I am using react verion where i am trying to feed data by external search. i cant see the new data on grid.

public componentDidUpdate(previousProps, previousState) {

    if (JSON.stringify(previousProps.Data) !== JSON.stringify(this.props.Data)) {   
     
      CurrentClass.pqGridObj.data = this.props.Data; //CurrentClass.pqGridObj.options.dataModel.data = this.props.Data;
      CurrentClass.pqGridObj.refreshDataAndView();
    }
  }

6
Help for ParamQuery Pro / Re: CheckboxSelection is disabled
« on: September 04, 2020, 11:19:55 pm »
I tried removing that property and it is coming as in screenshot which is coming as editable

7
Help for ParamQuery Pro / CheckboxSelection is disabled
« on: September 04, 2020, 11:05:15 pm »
Hi

I am rendering the checkbox column as below in react, but the checkboxes are getting disabled. I have downloaded the latest version

  if (this.props.IsChkboxColReqd) {
      columnObj = {
        title: "", dataIndx: "", maxWidth: 30, minWidth: 30, align: "center",dataType: "bool",
        cb: { header: true, all: false,select:true },
        type: 'checkBoxSelection', cls: 'ui-state-default', resizable: false, sortable: false, editable: false
       
      };
      colM.push(columnObj);
    }
attached the image

Pages: [1]