Scheduler inside form tag

Hi,

I have aspx page:

[code]


Select a facility: 
<asp:DropDownList ID=“ddlFacility” runat=“server” AutoPostBack=“true”>
</asp:DropDownList>
<asp:HyperLink ID=“hlBack” runat=“server” Text=“Back to List”></asp:HyperLink>
<asp:HiddenField ID=“hfMemberName” runat=“server” />










[/code]

This page displays only conents of the top

tag.
Scheduler is not shown at all. If I move scheduler’s
outside the
then it gets shown well. However doing this makes my top line (Select a facility drop down list) to shift scheduler down and hide last hours of it’s scale.
I’d move my drop down box to the
but it needs to wrap it all with tag.
Does it all mean scheduler is supposed to be at a “static” html page and I have to fill my drop down list from client side ?

Thanks,

Slava

The problem is in “height: 100%;” in the scheduler’s div styles. If you change it with fixed size in px it will work. ( it is part of normal html behavior, 100% from html form tag will result in zero height )