Rank: Member Groups: Member
Joined: 6/2/2008 Posts: 14
|
I'm new to using essential objects and so far it has been good except the datepicker does a "break" by itself.
For instance: <eo:DatePicker id="blah" runat="server" /> Test
In this case, the "Test" goes to the next line instead of being on the same line. I guess my problem is more towards formatting it. Thanks for the help.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You can do this:
<eo:DatePicker id="blah" runat="server" style="display:inline" />
Note the "display:inline" style attribute. That would prevent the DatePicker from causing a line break.
Thanks
|
Rank: Member Groups: Member
Joined: 6/2/2008 Posts: 14
|
That works, thanks.
|