Hello,
hope my question is not to stupid; I use NetAdvantage 11.1.20111.2064 with .Net 4.0.
I catch the Expanding Event of the control and try to increase the height of the ExplorerBar. It seems that there is no such property in the control. I tried:
web_rechts = $find(
'<%=WebExplorerBar1.ClientID%>');
web_rechts.height = '575px';
or
web_rechts.style.height = '575px';
But this is the wrong way.
So how can i set the Height of the WebExplorerBar with JavaScript ?
thanks
Patric
Hello Patric,
Please see this forum post.
function WebExplorerBar1_ItemExpanding(sender, eventArgs) { var control = $find("<%=WebExplorerBar1.ClientID %>"); if (!$util.isNullOrUndefined(control)) { control.get_element().style.height = "400px"; } }
Let me know if you have further questions.
Elizabeth AlbertLocalization Engineer
If you need further assistance with this matter, please do not hesitate to contact us.
Sincerely,
Georgi Sashev
Developer Support Engineer
Infragistics, Inc.
http://ko.infragistics.com/support