I have several WebDateChooser on my pages. The drop down button is the calendare image i.e. calendar.gif. Everthing is working fine. The only change I need to do is to set the alignment of the date to right. Can anybody which property is used for that. Here is my code:
<
NullDateLabel="" Value=""
NullValueRepresentation="DateTime_MinValue" Width="110px" ToolTip="<%$ resources:LAtooltips, dateoffermade %>">
</igsch:WebDateChooser>
Hi,
You can use following style to move the text to the right:
<style type = "text/css">
.test
{
margin-left: 50px;//some sensible value
}
</style>
In <EditStyle CssClass = "test" />
You could use text-align: right; but the drop down button will set on top of the text.