Recent Posts

Pages: [1] 2 3 ... 10
1
ParamQuery Pro Evaluation Support / Re: updateRow could not update cells in grid
« Last post by paramvir on July 18, 2025, 03:07:39 pm »
this is incorrect: ui.rowData can't be passed as newRow param of updateRow method.

Create a new object {} containing only the changes to pass it as newRow param.

Please check the documentation:

https://paramquery.com/pro/api#method-updateRow
2
ParamQuery Pro Evaluation Support / updateRow could not update cells in grid
« Last post by hyh888 on July 18, 2025, 01:50:08 pm »
Dear Team,
               for (let key in data) {
                        ui.rowData[key] = data[key];
                }
When using pqgrid v9,   I found that this program can update cells in grid( some data in fields of ui.rowData has been changed with program above ):             $grid.pqGrid("refreshRow",{rowIndx:ui.rowIndx});
but using following program, cells could not be updated.
               $grid.pqGrid("updateRow",{
                    rowIndx: ui.rowIndx,
                    newRow: ui.rowData,
                    checkEditable:false,
                    refresh: true
                });
 Would you like to provide any advice?
3
Help for ParamQuery Pro / Re: Column filter on remote source override
« Last post by paramvir on July 15, 2025, 06:19:11 am »
Setting return false in the beforeFilter event effectively prevents filtering by canceling the remote data request.

You can verify this behavior by using the above code in the example: https://paramquery.com/pro/demos/filter_header

If you're still encountering issues, feel free to share a JSFiddle for further assistance.
4
Help for ParamQuery Pro / Re: Column filter on remote source override
« Last post by jplevene on July 15, 2025, 02:30:20 am »
It doesn't work.  "return false" does not prevent the remote data call or even passing the parameters to the remote data call
5
Help for ParamQuery Pro / Re: Column filter on remote source override
« Last post by paramvir on July 14, 2025, 03:27:05 pm »
beforeFilter event can be used to hook into filter for specific column(s). return false in this event cancels the remote filter request.

Code: [Select]
beforeFilter: (evt, ui)=>{
if(ui.rules.find(rule=> rule.dataIndx == 'ShipCountry')){
                //do your thing..
return false; //cancel filtering.
}
},
6
Help for ParamQuery Pro / Column filter on remote source override
« Last post by jplevene on July 13, 2025, 07:46:19 pm »
I have a grid with multiple columns and different filter options that uses a remote data source.

One column filter (being a range drop down grid), when options are selected, I don't want to trigger a reload or even a filter, I want to call my own function that does it's own thing, does NOT request data to loaded remotely, that has nothing to do with the grid and does not affect the grid.

Is this possible and how can I do it?
7
ParamQuery Pro Evaluation Support / Re: ParamQuery Pro is not EAA compliant
« Last post by datapa on July 10, 2025, 01:40:20 pm »
Many thanks, we look forward to the release.
8
ParamQuery Pro Evaluation Support / Re: ParamQuery Pro is not EAA compliant
« Last post by paramvir on July 09, 2025, 06:13:27 pm »
Thank you for bringing this to our attention. We appreciate your commitment to accessibility and for highlighting the importance of the EAA and WCAG 2.2 compliance.

We are currently working toward ensuring compliance with the European Accessibility Act and plan to implement necessary updates by Aug / Sept 2025.

Your feedback is invaluable in helping us align with both legal standards and user needs.
9
ParamQuery Pro Evaluation Support / ParamQuery Pro is not EAA compliant
« Last post by datapa on July 03, 2025, 07:31:57 pm »
Hi,

As you may be aware, the European Accessibility Act (EAA) came in to force at the end of June.  Any web application used in the EU must comply.

We use ParamQuery Pro, and need it to comply with the EAA, which is now a legal requirement.

Indeed, you are now legally obliged to comply with EAA to sell to EU customers.

In order to comply with the EAA, you need to adhere to WCAG 2.2 AA standards.  Quick checks with tools such as Lighthouse and Accessibility Isights for Web  indicate that you do not yet. 

Please can you confirm your intention to comply with the EAA and the timescale for this?

Regards,

Paul
inmydata.com
10
If the checkbox is embedded within a grid cell, toggling its state should update the underlying data model—this, in turn, should enable the Save Changes button.

You can see this behavior in action in the following example: https://paramquery.com/pro/demos/editing_batch

It’s possible that in your implementation, the checkbox isn’t properly data-bound, which would prevent the grid from detecting the change.
Pages: [1] 2 3 ... 10