ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: Akihiro Inoue on September 25, 2017, 11:33:26 am

Title: How to make matrix table
Post by: Akihiro Inoue on September 25, 2017, 11:33:26 am
Hi, team

I want to make the display of the matrix table such as the attached images.
How can I make it using PQ grid?
Title: Re: How to make matrix table
Post by: paramvir on September 25, 2017, 12:18:33 pm
please reattach.
Title: Re: How to make matrix table
Post by: Akihiro Inoue on September 25, 2017, 01:53:20 pm
sorry...
I attach again
Title: Re: How to make matrix table
Post by: paramvir on September 25, 2017, 10:15:12 pm
That looks like 3 tables with scrollbar control in table B

So I guess you could create 3 grids and place together as in the image.

Scrolling can be controlled from one grid to another as in this example: https://paramquery.com/pro/demos/scroll
Title: Re: How to make matrix table
Post by: Akihiro Inoue on October 05, 2017, 12:35:52 pm
Hi, team.
Thank you for your support.

I could delete the horizontal scrollbar.
I want to delete the vertical scrollbar of grid1 in the attached images.
The vartical scroll and horizontal scroll is necessary for only grid2.
How can I do it?
Title: Re: How to make matrix table
Post by: paramvir on October 06, 2017, 10:52:12 am
Scrollbars could be hidden with little bit of css

Code: [Select]
#grid_child .pq-vscroll, #grid_child .pq-hscroll, #grid_child .pq-hvscroll-square{
display:none;
}