Rank: Advanced Member Groups: Member
Joined: 2/20/2008 Posts: 34
|
I have two datepickers sitting side by side inside a very wide <td>. It's wide enough to hold many of them. But when it renders in I.E. the second one is below the first one. I've tried explicits widths and other things to no avail. No other control seems to behave like this.
Is there a fix? Thanks, Gary
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, DatePicker is rendered as a block element. In order to force it as inline element, you can add style="display:inline" to it. For example:
Code: HTML/ASPX
<eo:DatePicker runat="server"
ID="DatePicker1" style="display:inline">
</eo:DatePicker>
<eo:DatePicker runat="server"
ID="DatePicker2" style="display:inline">
</eo:DatePicker>
Thanks
|