Author Topic: How to make matrix table  (Read 3132 times)

Akihiro Inoue

  • Pro Ultimate
  • Newbie
  • *
  • Posts: 32
    • View Profile
How to make matrix table
« 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?

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6296
    • View Profile
Re: How to make matrix table
« Reply #1 on: September 25, 2017, 12:18:33 pm »
please reattach.

Akihiro Inoue

  • Pro Ultimate
  • Newbie
  • *
  • Posts: 32
    • View Profile
Re: How to make matrix table
« Reply #2 on: September 25, 2017, 01:53:20 pm »
sorry...
I attach again

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6296
    • View Profile
Re: How to make matrix table
« Reply #3 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

Akihiro Inoue

  • Pro Ultimate
  • Newbie
  • *
  • Posts: 32
    • View Profile
Re: How to make matrix table
« Reply #4 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?

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6296
    • View Profile
Re: How to make matrix table
« Reply #5 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;
}