ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: kiwon34 on January 29, 2020, 12:05:53 pm

Title: Freeze the entire grid option.
Post by: kiwon34 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.
Title: Re: Freeze the entire grid option.
Post by: paramvir 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;
}