Can you help me capture the windowstate on the client side?
The showSelect function fires when the WebDialogWindow windowstatechanged event takes place, but I do not know how to correctly find this value.
{
var elements = document.getElementsByTagName("select");
var dispType = "inline";
elements[j].style.display = dispType;
j++;
}
you can compare to the following values:
$IG.DialogWindowState.Hidden
$IG.DialogWindowState.Minimized
$IG.DialogWindowState.Maximized
so
if (resultVar == $IG.DialogWindowState.Minimized) { do something; }
I believe their values are 0,3,1, and 2 repectively.