Recent Posts

Pages: 1 2 [3] 4 5 ... 10
21
Help for ParamQuery Pro / Re: Changing the font size of everything in the grid
« Last post by paramvir on April 16, 2025, 06:59:01 am »
The css rule needs to be placed after the css files of pqgrid.

Code: [Select]
<style>
.pq-grid{
  font-family: Arial, sans-serif;
  font-size: 20px;
}
</style>

https://jsfiddle.net/8h7gadys/
22
Help for ParamQuery Pro / Changing the font size of everything in the grid
« Last post by pbassey on April 16, 2025, 01:07:21 am »
Can you tell me what the command is in ParamQuery to set the entire grid to the following:
.pq-grid {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
}

I placed the above style setting just about the javascript and it did not have any effect on the font size of the text in the grid.

Thanks...
23
Help for ParamQuery Pro / Re: R2L Support in Edge & Chrome on "Virtual-X: True"
« Last post by paramvir on April 09, 2025, 09:55:05 am »
Please use this patch to fix the RTL issue.

Code: [Select]
    //fix for RTL.
    pq.scrollLeft = (ele, val) => {
        if (val == null) {
            return Math.abs(ele.scrollLeft)
        }
        else {
            val = Math.abs(val);
            if ($(ele).css('direction') == 'rtl') {
                val = -1 * val;
            }
            ele.scrollLeft = val;
        }       
    }
    pq.scrollLeftVal = (ele, val) => Math.abs(val)

Demos in RTL can be viewed by appending rtl to the url.

https://paramquery.com/pro/demos?rtl
24
Help for ParamQuery Pro / Re: Localization demo for ParamQuery Pro version 9.1
« Last post by paramvir on April 03, 2025, 05:48:01 pm »
In v3.3, localization strings for English are included in the grid itself, so no need to include localization file for English.

In Pro version, however you are required to include the localization file as mentioned in the Tutorial section.

https://paramquery.com/pro/tutorial#topic-include

You can refer to the example for dynamically changing the locale here: https://paramquery.com/pro/demos/localize
25
Help for ParamQuery Pro / Localization demo for ParamQuery Pro version 9.1
« Last post by RamC on April 03, 2025, 04:37:21 pm »
Hi Paramvir, we are upgrading PQ grid version from 3.3 to 9.1. After updates we faced issue of Localization for pager. Can you please provide a demo url for version 9.1, I gone through https://paramquery.com/demos/localize which is for ver 3.X.
26
Suggest new features / Filter multi select - Apply button
« Last post by jplevene on April 02, 2025, 06:56:44 pm »
When data is remote, every time a user selects an option on the drop down, the data reloads causing more server traffic.  It would be great to have an option for Apply or Cancel buttons and selections are ignored untileither is pressed.
27
Here is a demo of jsTree and how they do it which more subtle and I feel is better: https://preview.keenthemes.com/html/keen/docs/general/jstree/dragdrop
28
Is there any news on this.  Most others do as follows:
  • Dropping inside the row near the vertical middle makes it a child. The arrow drop indicator on recieving row indented right inside the row to signify drop position is a child
  • Dropping near the to the top or bottom of the recieving row makes it a sibling The indicator arrow on top or bottom of the recieving row to signify drop position is a sibling
  • Optional callback function that returns false if drop not allowed (like a hover_node event).  No drop allowed gives the cross just like pqGrid already does (would be nice to be able to change this, maybe make it red and the check green)
  • Option if row can accept dropped children, if false then drop arrow indicator only shows sibling dropping, even if cursor is near center of the row.

Will this be in the next version and do you have a release date yet of the next version?

This one does it quite nicely and is far easier for the user to understand https://mbraak.github.io/jqTree/examples/03_drag_and_drop/
29
Bug Report / Re: New row comit and pq_detail column
« Last post by MichalV on March 25, 2025, 11:38:55 pm »
Ahh my apologies, I added the dataIndx: "pq_detail" by myself to the column of type: 'detail' so can hide it before the commit. Anyway if the detail column exists the commit does not work. If I remove it from the grid the commit works. Any idea how to fix that?
30
Bug Report / Re: New row comit and pq_detail column
« Last post by paramvir on March 25, 2025, 11:20:17 pm »
pq_detail and column with type: "detail" are not the same. pq_detail is a property of the rowData while column of type: 'detail' is used for nesting or row details.
Pages: 1 2 [3] 4 5 ... 10