Rank: Newbie Groups: Member
Joined: 7/30/2008 Posts: 1
|
Is there a property with the datepicker control that will prevent the autobreak that is generated after it? I've been placing it in a table cell to be able to put text to the right of it, but didn't know if there was a property that would alter the flow after the control.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
Hi, I believe you can do that by adding style="display:inline" to the DatePicker control:
Code: HTML/ASPX
<eo:DatePicker style="display:inline" .....>
....
</eo:DatePicker>
That should remove the auto break after it. Thanks!
|