Nevermind. I figured this out.
I had to include the stylesheet in my file. (Which I don't do for the other RadControls for ASP.net.)
And I had to set:
EnableEmbeddedSkins =
False
<
telerik:radsplitter SkinsPath="~/RadControls/Splitter/Skins" RadControlsDir="~/Controls" Orientation="Vertical" id="slpTreeAndSearch" LiveResize="false" runat="server" height="100%" width="100%" Skin="Gray" >
<telerik:radpane id="treePane" runat="server" width="50%" Height="100%">
.....
</telerik:radpane>
<telerik:radsplitbar id="splbTreeAndSearch" runat="server" CollapseMode="Backward" EnableResize="true"/>
<telerik:radpane Width="50%" Height="100%" Scrolling="Y" ID="SearchPanel" runat="server">
-------
</telerik:radpane>
</telerik:radsplitter>
Pay attention that width of the panes is 50%.
Problem: When the page is loaded, then pane's content gets 50% of pane width and panes width is not 50% of the page width (see picture1).
And only after 1-2 seconds the splitter is rezised and page looks good (see picture2).
How can we fix the problem?
Thanks,
Olga
| RadScriptManager.RegisterStartupScript(this, GetType(), "alerts", sb.ToString(), true); |
<
telerik:RadMenu ID="RadMenu2" runat="server" Flow="Vertical" Font-Bold="False" Font-Names="Arial" BackColor="SteelBlue">
As you can see, I have set a background colour for the menu as SteelBlue.hi
I am not using SQLdatasource to bind the radgrid. Instead, i used a datatable in the code behind. I have also added a delete command button to the grid.
<telerik:GridButtonColumn CommandName="Delete"
HeaderText="Delete" Text="Delete" UniqueName="column">
</telerik:GridButtonColumn>
How do I delete an item using a stored procedure? thanks
