I cannot put anything to the right of the WebDateChooser, like a validator for example. It wants to push everything down to the next line and i don't want that.
All textboxes and other controls don't seem to have this issue, just WebDateChooser.
Any property I can change, or do I just have to live with this?
I can think of some workarounds, but would rather not.
Thanks
Hi Alex,
That is correct. The WebDateChooser uses <table> to render itself, and that is "block" element.
If you need to render another element next to it, then you have 2 options: use position:absolute (better foor both controls), or use table. Example:
<table> <tr> <td> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label> </td> <td> <igsch:WebDateChooser ID="dc1" runat="server"></igsch:WebDateChooser> </td> </tr></table>