Hi, I am using the same calenderextender couple of places elsewhere in the same system and it works fine but it doesn't work on this file, I tried adding the css file as you can see in the code but the settings in the css file doesn't change anything(width, backcolor etc...) any way my problem is I need to have this calender show all days of the week. Appreciate any suggestions, ideas or help. Thanks in advance! Sam.
CODE
<td>
<span ID="DateSpan" runat="server" visible="false" style="width:300px">
<asp:Textbox ID="tbxDate" runat="server" runat="server" Columns="12" ValidationGroup="newEntry" />
<br />Click above to edit date
<asp:RequiredFieldValidator ID="DayValidator" runat="server" Display="None" ErrorMessage="Date is missing" ControlToValidate="tbxDate" ValidationGroup="newEntry" />
<cc1:ValidatorCalloutExtender ID="DayValidator_ValidatorCalloutExtender" runat="server" Enabled="True" TargetControlID="DayValidator" />
<asp:CompareValidator id="CompletionDateCompareValidator" runat="server" Display="None" ErrorMessage="Date format is incorrect." ControlToValidate="tbxDate" Operator="DataTypeCheck" Type="Date" ValidationGroup="newEntry"/>
<cc1:ValidatorCalloutExtender ID="CompletionDateCompareValidator_ValidatorCalloutExtender" runat="server" Enabled="True" TargetControlID="CompletionDateCompareValidator" />
<cc1:CalendarExtender ID="EnteredDate_CalendarExtender" runat="server" TargetControlID="tbxDate" Enabled="true" CssClass="calTheme1" EnabledOnClient="true"/>
</span>
</td>