I have a EWorld timepicker server control in a Usercontrol that is in the default View of an ASP.NET MultiView control. When the page is initially loaded the time popup works fine, but when I switch the view away from and then back to the view containing the timepicker the time popup is empty.
Like so...
Here is the ASP.NET markup for the Timepicker control.
<ewc:TimePicker
ID="tpReportTime"
runat="server"
Nullable="true"
MilitaryTime="true"
MinuteInterval="FifteenMinutes"
ShowClearTime="true"
ImageUrl="~/images/clock.gif"
ControlDisplay="TextBoxImage"
DisableTextBoxEntry="false"
DisplayUnselectableTimes="true"
NumberOfColumns="4"
PopupWidth="12.5em"
Width="3.em"
RoundUpMinutes="false"
CssClass="time_picker_wrap"
tooltip="HH:MM">
<TextBoxLabelStyle CssClass="time_input" />
</ewc:TimePicker>