Does anyone have an example of how to set the style on the calendar dropdown portion of this control? I have assigned the StyleSetName and StyleSetPath and the textbox/button portion displays properly, but when you click the dropdown button the calendar has no style whatsoever, can anyone help? I am using Office2007Blue, is it just that certain styles don't support it? Thanks.
Hello dbishop9 ,
Thank you for posting in our forum.
I recommend you using DropDownCalendarID to set WebMonthCalendar of the WebDatePicker
http://help.infragistics.com/NetAdvantage/ASPNET/2011.2?page=Infragistics4.Web.v11.2~Infragistics.Web.UI.EditorControls.WebDatePicker~DropDownCalendarID.html
You should set the StyleSetName of the WebMonthCalendar too.
<ig:WebDatePicker ID="WebDatePicker2" runat="server" DisplayModeFormat="d" Value='<%# Bind("DOB") %>'
DropDownCalendarID="WebMonthCalendar2" StyleSetName="Office2007Blue">
</ig:WebDatePicker>
<ig:WebMonthCalendar ID="WebMonthCalendar2" runat="server" StyleSetName="Office2007Blue">
</ig:WebMonthCalendar>
Let me know if you need further assistance.