I am using a RadTabStrip in combination with the RadMultiPage on a page using the embedded skin "Gray" and would like to give the appearance of a form with a thin border around the multipage. To accomplish this I use the follow css class (also shown control declaration on the aspx page):
<telerik:RadTabStrip ID="RadTabStrip1" runat="server" Skin="Gray" Width="700px" MultiPageID="RadMultiPage1" SelectedIndex="0" OnTabClick="RadTabStrip1_TabClick">
</telerik:RadTabStrip>
<telerik:RadMultiPage id="RadMultiPage1" runat="server" SelectedIndex="0" Width="700px" CssClass="multiPage" OnPageViewCreated="RadMultiPage1_PageViewCreated">
</telerik:RadMultiPage>
.multiPage
{
width: 700px;
height: 335px;
border: solid 1px #cccccc;
background: #ffffff;
padding: 10px 10px 0px 10px;
}
This accomplishes the objective except for one detail. On the highlighted tab the border extends across the base of the tab since as you can see from the css I have created the border around the entire multiplage. I could just create a border just around the left, bottom, and right side but I want the multipage to extend a little wider than the tabstrip to the right. So if I did this there would be a missing border on the top right side of the form. I'm sure there is a simple solution for this, but so far it has escaped me. Thanks for any help you can give.
Regards,
Keith
<telerik:RadTabStrip ID="RadTabStrip1" runat="server" Skin="Gray" Width="700px" MultiPageID="RadMultiPage1" SelectedIndex="0" OnTabClick="RadTabStrip1_TabClick">
</telerik:RadTabStrip>
<telerik:RadMultiPage id="RadMultiPage1" runat="server" SelectedIndex="0" Width="700px" CssClass="multiPage" OnPageViewCreated="RadMultiPage1_PageViewCreated">
</telerik:RadMultiPage>
.multiPage
{
width: 700px;
height: 335px;
border: solid 1px #cccccc;
background: #ffffff;
padding: 10px 10px 0px 10px;
}
This accomplishes the objective except for one detail. On the highlighted tab the border extends across the base of the tab since as you can see from the css I have created the border around the entire multiplage. I could just create a border just around the left, bottom, and right side but I want the multipage to extend a little wider than the tabstrip to the right. So if I did this there would be a missing border on the top right side of the form. I'm sure there is a simple solution for this, but so far it has escaped me. Thanks for any help you can give.
Regards,
Keith