Park Down API for Windows component

Hi,

I am working on DHTMLX Pro v2.5.

Could you please let me know the API to invoke the parkdown event of the window component programatically?
I could find the API (park) but it is parking up the window and could not find any api for restore (park down). Also, due to some reason, i cannot use the Maximize API.

So, could you please let me know the API for parking down the window & firing the parking down (onParkDown) event of the window.

Thanks,
Vibhav Agrawal

Hello,

if a window is parked, the park() method call executes “park down”.

So, you need to call park() method again to show window content:

dhxWins.window(id).park();

Method isParked allows to get current window state.