<%
-- <cc3:checkboxvalidator id="chkValidator1" runat="server" mustbechecked="true" controltovalidate="CheckBox1"
display="Dynamic" enableclientscript="true" errormessage="Please accept the terms and policy" />--
%>
Hello,
I went through one problem, I am using Rad window,under rad window i am using formview. Under formView I have taken RadTabStrip. In RadTabStrip I have taken 2 RadTab which are pointing to 2 diffrent RadPageView.In one RadPageView I have taken asp TextBox and in other RadPageView I have taken RadEditor. In formview I am also using RadTreeView. I have set the height of RadEditor to fix 140px,and I am showing first tab as selected when I open that page,So in starting TextBox display as selected RadTab .But when I select second tab where I am using radEditor,that RadEditor height display lesser than what I have set in designing. When i click on any node of RadTreeView then the height of radEditor set correct.So this is my problem,How this can be solve So that RadEditort height can be set correct ,
Another thing is that If I set Second tab as selected Index where I have taken radEditor then in page open
RadEditor height set perfect,But i want first tab(Where I have taken TextBox) to be selected in page open ,So please tell me how this
problem can be solved.
Thanks in advance.

Situation.
1. I have a RadCalendar control on a simple web page.
2. I have a listbox control with dates in it (format dd/mm/yyyy)
3. On load i want to take the dates in the listbox and select them in the calendar.
Constraints.. have to do this serverside (no java)
I tried this in the ItemDatabound event of my listbox control
Protected Sub elstDates_DataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles elstDates.DataBound
For Each li As ListItem In elstDates.Items
ecalDatesWorked.SelectedDate =
CType(li.Value, Date).ToShortDateString
Next
End Sub
