This is a migrated thread and some comments may be shown as answers.

by default dock on

1 Answer 72 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
Mugdha Aditya
Top achievements
Rank 1
Mugdha Aditya asked on 27 Sep 2010, 12:35 PM
i have used Splieter..every thing working fine but..
i want to bydefault dock open.
so onces used click on the page he will find dock open by default.
what setting i havr to do??

2) i wan to increase size of spliterpanel text "Task List"..which is on right hand side

my code is

 <telerik:RadSplitter ID="RadSplitter1" runat="server" Width="100%" Height="100%" Skin="Web20" >
        <telerik:RadPane ID="LeftPane" runat="server" Width="22px" Scrolling="none">
            <telerik:RadSlidingZone ID="SlidingZone1" runat="server" Width="22px">
                <telerik:RadSlidingPane ID="RadSlidingPane1" Title="Task List"  IconUrl="~/images/PaneIcon.gif"  runat="server" Width="150px">
                    <table>
                        <tr>
                            <td>
                                <asp:LinkButton ID="lnkPlanned" runat="server" CommandName="cmdPlanned" Visible="True"
                                    CommandArgument="Planned Task" Text="Planned Task" ToolTip="Planned Task" CssClass="grid-text" Font-Size="12px"></asp:LinkButton>
                            </td>
                        </tr>
                        <tr>
                            <td>
                                <asp:LinkButton ID="lnkUnplanned" runat="server" CommandName="cmdUnPlanned" Visible="True"
                                    CommandArgument="UnPlanned Task" Text="UnPlanned Task" ToolTip="UnPlanned Task" CssClass="grid-text" Font-Size="12px"></asp:LinkButton>
                            </td>
                        </tr>
                         <tr>
                            <td>
                                <asp:LinkButton ID="lnkIssues" runat="server" CommandName="cmdIssues" Visible="True"
                                    CommandArgument="Issues" Text="Issues" ToolTip="Issues" CssClass="grid-text" Font-Size="12px"></asp:LinkButton>
                            </td>
                        </tr>

                    </table>
                </telerik:RadSlidingPane>
            </telerik:RadSlidingZone>
        </telerik:RadPane>
        <telerik:RadSplitBar ID="Radsplitbar1" runat="server">
        </telerik:RadSplitBar>
        <telerik:RadPane ID="Radpane2" runat="server">
            <div style="padding: 5px">
                <h2>
                    RadEditor... on msdn2.microsoft.com
                </h2>
                <p>
                    TESTING 1
                </p>
                <p class="postfoot">
                    TESTING 2
                </p>
            </div>
        </telerik:RadPane>
    </telerik:RadSplitter>

1 Answer, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 28 Sep 2010, 03:32 PM
Hello Mugdha Aditya,

 I am not completely understand what exactly you mean by "so onces used click on the page he will find dock open by default" - If you want to have the sliding pane initially docked, you should set the DockedPaneId property as shown below:

http://demos.telerik.com/aspnet-ajax/splitter/examples/sp_initialstate/defaultcs.aspx

As to changing the font-size, you should use some CSS as shown below:

<style type="text/css">
    .rspPaneTabText
    {
        font-size: large !important;
    }
</style>


Note the usage of the keyword !important - it is needed to override the default style.

Kind regards,
Svetlina
the Telerik team
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
Tags
Splitter
Asked by
Mugdha Aditya
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Share this question
or