ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: omerix on January 15, 2019, 01:35:07 pm

Title: Full Screen mode
Post by: omerix on January 15, 2019, 01:35:07 pm
How do I open "ParamGrid" full screen mode when the page loads?

Code: [Select]
var obj = {
 editable:false
[u][b],collapsible: { collapsed : true,toogle:true }[/b][/u]
,menuIcon :false
,showToolbar :false
}
Title: Re: Full Screen mode
Post by: paramvir on January 15, 2019, 07:52:09 pm
Please call toggle method in complete event.

https://paramquery.com/pro/api#method-toggle
Title: Re: Full Screen mode
Post by: omerix on January 16, 2019, 02:08:37 pm
Thanks param. Good work

Code: [Select]
,complete:function(evt, ui) {this.toggle()}