is it possible to set the width of height of the web panel through javascript?
Hello,
You may use the following client side code snippet to change the height of WebPanel:
var panel1 = igpnl_getPanelById("WebPanel1"); panel1._element.height = 300;
Hope it helps.
Thanks.
Puneet
thank you!
is there somewhere on the site this is documented? I must be missing it.
great info. I appreciate it a bunch. I am not familiar with debugger statements, but am sure there is plenty on google about it. Thanks again!
You can refer to the CSOM of WebPanel from the following online help article:
<http://help.infragistics.com/Help/NetAdvantage/ASPNET/2009.1/CLR3.5/html/WebPanel_CSOM_Overview.html>
Further, you can put debugger statement in your client side code and find out about such properties at runtime(by pressing Shift-F9)