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

Disable RadSlidingPane Title Bar

2 Answers 111 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
amir ali
Top achievements
Rank 1
amir ali asked on 06 Nov 2009, 06:18 PM
Hi

I am Using RadSlidingPane for my Application and I should disable the title bar for not to shown in my page.
I look up at it`s property but it didn`t workout , and I just disabled Docking button But I want whole title bar not to shown in my page .

I will be realy happy if someone could help me , or interduce me some control like RadSlidingPane but with no title bar !

Thanks
Best Regards
Amir Ali

2 Answers, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 11 Nov 2009, 01:03 PM
Hello amir ali,

By design the RadSplitter does not offer removing the titlebar but you can achieve what you need by going through the following steps:

1) set EnableDock="false" for all the sliding panes
2) Include the following CSS in the page's head:

<style type="text/css">
        .rspSlideHeaderIconWrapper, .rspSlideTitleContainer
        {
          
            display: none !important;
        }
          
        .rspSlideTitle, .rspSlideTitleContainer
        {
            background-image: none !important;
            height: 1px !important;
        }
  
    </style>

Note the usage of the keuword !important because if you miss it, your custom settings will get overridden by the default ones and you will not get the desired result.

The solution I  prepared for you and suggested works fine on my side, let me know whether tit works for you as well.

Sincerely yours,
Svetlina
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
amir ali
Top achievements
Rank 1
answered on 12 Nov 2009, 05:31 PM
hi
thanks for helping me it worked awesome,
 as your team mentioned in their teasers , "telerik is unbeatable"

best regards
Amir Ali
Tags
Splitter
Asked by
amir ali
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
amir ali
Top achievements
Rank 1
Share this question
or