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

Pages: [1]
1
Help for ParamQuery Pro / Re: Filter in 5.2.0 custom select-dropdown
« on: August 15, 2018, 12:47:14 am »
HI

The range filter dropdown is displaying true and false in the drop down. While clicking on either true or false, the data is filtered in the table, but the values of this drop down is also changing in both the modes that is view and edit. Please check the screenshots in the attachment.

To resolve i have tried editable:false in gridOptions for filter:{} in colModel object, but still it is not working as expected.

2
Help for ParamQuery Pro / Re: Filter in 5.2.0 custom select-dropdown
« on: August 07, 2018, 11:37:34 pm »
Hi,

The single selection  for drop down is done with filter function but the values are displayed are true, false and blank instead of Yes, No and All and l I tried using labelIndex:”text” and valueIndex:”value” if using the previous vintage options.Please can you suggest me on changing the values.



Thanks.

3
Help for ParamQuery Pro / Re: Filter in 5.2.0 custom select-dropdown
« on: August 02, 2018, 08:32:44 pm »
As per your suggestion, I have used range but the menu UI displayed is it customizable, if yes then please suggest a way/example to customize the menu for range similar to a native dropdown menu with radio button instead of check boxes.

4
Help for ParamQuery Pro / Re: Filter in 5.2.0 custom select-dropdown
« on: August 01, 2018, 10:11:33 pm »
Is there any other options to customize the default UI (such as replacing the <input type='text'> to <select>...</select>) for drop down in filter select in the header section. Please suggest.
Note: Searched API v5.2.0, but could not find any options.

Thanks

5
Hi

We have recently upgraded to 5.2.0 and as part of migration we have changed the existing code as per the API 5.2.0 where we have  created the pqgrid with:
Code: [Select]
               
               filter: {

                type: "select",
                init: function() {
                $(this).pqSelect({radio: true});
                        },
                crules: [{condition: "equal"}],
                valueIndx: "value", labelIndx: "text",
                mapIndices: {"text": "text", "value": "value"},
                options: [{'text': 'All', 'value': ''}, {'text': 'Yes', 'value': 'true'}, {'text': 'No', 'value': 'false'}],
                listeners: ['change']
                }

In the header section, I need a select box which shows given options with pqSelect plugin, but it is still displaying the default text box. Please suggest an alternate method for this.
NOTE: The above code was working in previous version.

Thanks

6
Hi PQGrid Team,

We have a pro account and we are stuck with below issue.

Issue Description:

We are using PQGrid library to create a data grid which has a drop down inside a cell. We want that on single click the drop down in the grid cell should be editable but drop down is opening on second click. How to avoid multiple clicks to open drop down in edit mode?
We tried below options but none of them worked. Please suggest some option as this is important for our application to have single click dropdown edit.

1. We used the PQGrid clickToEdit property and assigned 1 as value.

2. We also tried fixing with jQuery by binding click event on parent element like below:
$('.superparentclass').on('click','selectdropdowncontainerclass',function() {
$('.pq-editor-outer').find('select').trigger('click');});

We tried with 'change' and 'open' event too but did not work.

Pages: [1]