I want to make the Spreadsheet control the same size as the browser window. So I am trying to use the RadSplitter/RadPane method to do this. However, it's not really working and there are several weird things happening.
<telerik:RadSplitter ID="splitter" runat="server" OnClientLoaded="SplitterLoaded"
BorderSize="1" PanesBorderSize="1" Width="99%">
<telerik:RadPane ID="pane" runat="server" Width="100%">
<telerik:RadSpreadsheet runat="server" ID="radSheet" Height="99%" Width="99%" />
</telerik:RadPane>
</telerik:RadSplitter>
1. As seen in the "sheet_before_event" image, the control doesn't initially fill the RadPane.
2. However, after an event is fired (click in my case) the spreadsheet will then fill the RadPane, as seen in "sheet_after_event" image.
3. Through all of this the sheet view inside the control remains small with scroll bars.
Am I trying to do something that isn't currently supported?