I previously had a RadGrd nested like so:
RadSplitter => RadSplitter => RadGrid (i.e. RadGrid nested 2 Splitters deep)
Then on the AjaxManager's ClientEvents-OnResponseEnd, my Javascript looked like so:
| function setDimensions(sender, args) { |
| var splitter = $find(PageControls.RadSplitter1.id); |
| if (splitter != null) |
| splitter.resize(contentPaneWidth - 60, contentPaneHeight - 80); |
| } |
This worked perfect for resizing the 2nd level Splitter pane to the contentPane's width and height and thus the Grid to match.
Now, I've removed the 2nd Splitter and moved the Grid up one level. I can get the pane's width and height still. But how do I resize the grid?
Thanks.