Author Topic: Full Screen mode  (Read 2578 times)

omerix

  • Pro Enterprise
  • Full Member
  • *
  • Posts: 148
    • View Profile
Full Screen mode
« 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
}

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6282
    • View Profile
Re: Full Screen mode
« Reply #1 on: January 15, 2019, 07:52:09 pm »
Please call toggle method in complete event.

https://paramquery.com/pro/api#method-toggle

omerix

  • Pro Enterprise
  • Full Member
  • *
  • Posts: 148
    • View Profile
Re: Full Screen mode
« Reply #2 on: January 16, 2019, 02:08:37 pm »
Thanks param. Good work

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