Rank: Newbie Groups: Member
Joined: 5/29/2009 Posts: 6
|
If I place a DatePicker control in a table cell, the DatePicker always left-justifies itself in the cell. So, for example, if the cell has "Starting Date:" and then the DatePicker, the cell would display (in run-time) as follows:
Starting Date: [datepicker control]
Please advise!
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, Do you mean you want DatePicker to be on the same line as the text? If so you can add style="display:inline" to the DatePicker. It will be something like this:
Code: HTML/ASPX
<eo:DatePicker style="display:inline" .... >
.....
</eo:DatePicker>
Thanks!
|
Rank: Newbie Groups: Member
Joined: 5/29/2009 Posts: 6
|
Thank you ... works perfectly!
|