Hi,
I have an WebDateChooser when I try to change the height = 9px, it doesn't work, is there a min value to give to this property.
Thanks.
It will be easy for you to enter value for font-size in pixels, i.e Font-Size="9px" - that will allow you to have height property set to 9px
This is my webDateChooser:
<igsch:WebDateChooser ID="WebDateChooser1" runat="server"
Font-Size="X-Small" onvaluechanged="WebDateChooser1_ValueChanged"
>
<CalendarLayout DayNameFormat="FirstLetter" ShowFooter="False"
ShowMonthDropDown="true" ShowYearDropDown="true" FooterFormat=""
ShowNextPrevMonth="False" ShowTitle="False">
<CalendarStyle Font-Bold="False" Font-Italic="False" Font-Overline="False"
Font-Strikeout="False" Font-Underline="False" >
</CalendarStyle>
<DayHeaderStyle BackColor="#D4D6BA" ForeColor="White" />
<DayStyle BackColor="White" Font-Names="Arial" Font-Size="9pt" />
<OtherMonthDayStyle ForeColor="#ACA899" />
<SelectedDayStyle BackColor="#8BA169" />
<TitleStyle BackColor="#D9D9A7" />
</CalendarLayout>
</igsch:WebDateChooser>
The minimum height of the WebDateChooser depends on the font-size of the contorl. That means that you can set height higher than the font-size, but not height lower than font-size of the control, or like in your case you set heght lower than the font-size, but nothing happened.
Hope that helped