Recent Posts

Pages: 1 ... 7 8 [9] 10
81
Suggest new features / Option to disable a cell in select model
« Last post by jplevene on March 13, 2026, 03:12:29 pm »
In the selectModel, maybe have an "init" or a grid callback option so that certain cells can be prevented from being selected.

Also a suggestion to have a class "pq-no-hover" that can be added to a cell to prevent hover highlighting.
82
Editability and cell navigation can be controlled at the column level (for example, using `editable` or `column.skipFocus`). However, the **cell selection overlay itself cannot be controlled at the column level**.

Selection behavior is handled by the grid’s global `selectionModel`, so the overlay applies uniformly across the grid rather than being configurable per column or per cell.
83
It's not focus I want to skip on the column, it is select
84
Bug Report / Re: Cell alignment bug, align with valign
« Last post by paramvir on March 11, 2026, 11:01:51 pm »
85
There is no inbuilt option for that.

you can do it manually by inspecting the styles of header cells and copying them to the body cells.

These options may be of help

https://paramquery.com/pro/api#option-column-skipFocus

https://paramquery.com/pro/api#option-focusModel
86
News / ParamQuery Community MCP Server
« Last post by paramvir on March 11, 2026, 10:17:26 pm »
New: ParamQuery Community MCP Server



We’ve launched the ParamQuery Community MCP Server, a public MCP endpoint that allows AI coding assistants to access ParamQuery documentation, demos, and API references.

This helps AI tools generate more accurate ParamQuery grid configurations and reduces incorrect or hallucinated API usage.

The Community server is open and requires no token, so you can start using it immediately with MCP-enabled AI editors.

Endpoint
Code: [Select]
https://paramquery.com/mcp/lite



What It Enables

  • AI can search ParamQuery documentation and demos.
  • Generate grid configurations and examples faster.
  • Use official API references instead of guessing options.
  • Experiment with MCP-enabled editors without authentication.



Available Tools

  • lite_query_index 
    Search the ParamQuery resource index (Guides, Demos, Options, Methods, Events) using natural language queries such as 
    "remote filtering example" or "column resize option"
    Returns matching resource IDs and metadata.

  • lite_get_content 
    Retrieve technical content for a specific resource, including demos, guides, API documentation, and example code.


Example Configuration

Code: [Select]
{
  "mcpServers": {
    "paramquery-community": {
      "url": "https://paramquery.com/mcp/lite"
    }
  }
}



Supported Tools

Works with most MCP-enabled AI development tools including:

  • Cursor
  • Claude Code
  • VS Code (MCP extensions)
  • Cline
  • Continue
  • Windsurf
  • Codex CLI
  • Gemini CLI
  • LibreChat
  • MCP Inspector



The ParamQuery Community MCP Server makes it easy for AI tools to understand ParamQuery resources and generate better grid code instantly.
87
Help for ParamQuery Pro / Make a fixed column look and behave like a header row
« Last post by jplevene on March 11, 2026, 02:45:33 am »
I have one fixed column in a grid and I want it's cells to behave and look like column header cells (same background, same font and not selectable).  How do I do this?
88
Bug Report / Cell alignment bug, align with valign
« Last post by jplevene on March 11, 2026, 01:22:23 am »
In columnModel, if you set below:

Code: [Select]
{
  align: "center",
  valign:"center"
}

It only sets valign and ignores align.  Remove valign and align is fine.
89
you can also add a complete event listener in the gridOptions to refresh the filter header only when the popup window is hidden / destroyed.

Code: [Select]
complete() {
    let interval = setInterval(() => {
        var filterGridElement = this.widget()[0];

        if (!filterGridElement || filterGridElement.offsetHeight == 0) {
            //debugger;
var mainGrid = $("#grid_filter").pqGrid('instance');
            clearInterval(interval);
            mainGrid && mainGrid.refreshHeaderFilter({
                dataIndx: 'ShipCountry' //replace with your dataIndx.
            });
        }
    }, 200);
},
90
Thanks, however mainGrid.refreshHeaderFilter({dataIndx}); causes the dropdown to hide instead of staying visible like it currently does.
Pages: 1 ... 7 8 [9] 10