Author Topic: Freeze the entire grid option.  (Read 1597 times)

kiwon34

  • Pro Ultimate
  • Jr. Member
  • *
  • Posts: 52
    • View Profile
Freeze the entire grid option.
« on: January 29, 2020, 12:05:53 pm »
Hello param,

I wonder if there is a method for freezing the entire grid?
When this method is called, the grid is shown as disabled, and user won't be able to move the scrolls or select element in the grid.

If there is such a method or an option, please let me know.

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6282
    • View Profile
Re: Freeze the entire grid option.
« Reply #1 on: January 29, 2020, 12:41:57 pm »
Please call disable() method.

and add this css rule

Code: [Select]
.pq-grid-disable{
    height:100%;width:100%;position:absolute;left:0;top:0;background:#ccc;
    z-index:3;
}