Hello!
First time poster here. Very interested in this product but am trying the trial version until I am satisfied. I am following the tutorial and putting multipage inside the radtabstrips to display pages properly. The issue I am having is that when I align the the tabstrips differently it doesn't display properly, if I add a border it only includes the tabs and not the individual page views.. its like they aren't even attached even the tabs properly display the right page views... heres my code:
asp.net:
this is how its displaying: http://screencast.com/t/EFY9EVoD
what am i doing wrong? thanks for the help! really loving the tools so far! :)
First time poster here. Very interested in this product but am trying the trial version until I am satisfied. I am following the tutorial and putting multipage inside the radtabstrips to display pages properly. The issue I am having is that when I align the the tabstrips differently it doesn't display properly, if I add a border it only includes the tabs and not the individual page views.. its like they aren't even attached even the tabs properly display the right page views... heres my code:
asp.net:
<telerik:RadTabStrip ID="RadTabStrip1" runat="server" Align="Justify" Orientation="VerticalLeft" MultiPageID="RadMultiPagePatRecords"> <Tabs> <telerik:RadTab runat="server" Text="Patient Search"> </telerik:RadTab> <telerik:RadTab runat="server" Text="Delinquent Accounts"> </telerik:RadTab> <telerik:RadTab runat="server" Text="Invoices"> </telerik:RadTab> </Tabs> </telerik:RadTabStrip> <telerik:RadMultiPage ID="RadMultiPagePatRecords" runat="server"> <telerik:RadPageView ID="RadPatientSearch" runat="server"> <table> <tr> <td class="labels" align="center"> <asp:Label ID="Label1" runat="server" Text="First Name: "></asp:Label> </td> <td class="textboxes"> <telerik:RadTextBox ID="txtFirstName" runat="server" EmptyMessage="Type Here" Width="100%"> </telerik:RadTextBox> </td> <td class="labels" align="center"> <asp:Label ID="Label2" runat="server" Text="Last Name:"></asp:Label> </td> <td class="textboxes"> <telerik:RadTextBox ID="txtLastName" runat="server" EmptyMessage="Type Here" Width="100%"> </telerik:RadTextBox> </td> <td class="labels" align="center"> <asp:Label ID="Label3" runat="server" Text="DOB:"></asp:Label> </td> <td class="textboxsmall"> <telerik:RadDateInput ID="RadDateInput1" runat="server" DateFormat="MM/dd/yyyy" EmptyMessage="(MM/dd/yyyy)" Width="100%"> <EmptyMessageStyle Font-Size="Smaller" /> </telerik:RadDateInput> </td> </tr> </table> </telerik:RadPageView> </telerik:RadMultiPage>this is how its displaying: http://screencast.com/t/EFY9EVoD
what am i doing wrong? thanks for the help! really loving the tools so far! :)