I have a RadGrid that is using a User Control as the method of editing items in my grid. My question is, how can I get the height of the user control using Javascript?
I need the height so that I can set the ScrollArea property in java script.
User controls do not render a wrapper element of their own. In order to get the user control's height, you need to add some HTML element (e.g. asp:Panel) in the ASCX and include all the content in that element. Then you can get that element's height by using offsetHeight.
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items.