I have set up a Rad DatePicker, with a Calendar and a DateInput field, however I want the date input field to show on the left of the calendar, currently the Calendar is showing to the right of the dateInput control. Is there any simple way of doing this?
<telerik:RadDatePicker ID="dpDate" runat="server" Skin="TestSkin" EnableEmbeddedSkins="false">
<DateInput ID="diInput" DateFormat="dd/MM/yyyy" DisplayDateFormat="dd/MM/yyyy" runat="server" Enabled="false"
DisabledStyle-ForeColor="Black" BorderStyle="None" BackColor="White">
</DateInput>
<Calendar ID="calDate" ShowRowHeaders="false" runat="server" EnableEmbeddedSkins="false"
Skin="TestSkin">
<ClientEvents OnDateSelecting="DateSelected" />
<SpecialDays>
<telerik:RadCalendarDay Repeatable="Today" Date="" ItemStyle-CssClass="rcToday" />
</SpecialDays>
</Calendar>
</telerik:RadDatePicker>
<telerik:RadDatePicker ID="dpDate" runat="server" Skin="TestSkin" EnableEmbeddedSkins="false">
<DateInput ID="diInput" DateFormat="dd/MM/yyyy" DisplayDateFormat="dd/MM/yyyy" runat="server" Enabled="false"
DisabledStyle-ForeColor="Black" BorderStyle="None" BackColor="White">
</DateInput>
<Calendar ID="calDate" ShowRowHeaders="false" runat="server" EnableEmbeddedSkins="false"
Skin="TestSkin">
<ClientEvents OnDateSelecting="DateSelected" />
<SpecialDays>
<telerik:RadCalendarDay Repeatable="Today" Date="" ItemStyle-CssClass="rcToday" />
</SpecialDays>
</Calendar>
</telerik:RadDatePicker>