I use the webmonthcalendar control to allow a user to select one or more dates, from the calendar.
When the mouse hovers over a date day number, the cursor changes to an I-Bar cursor. Is there a way to change this to a "pointing" cursor?
Hello Hogleg,
I am glad you are able to move forward with your application. If you have any questions, please let me know as well.
That worked as well !!!
Thanks Vivian
Hello hogleg,
I am glad you are able to move forward with the WebMonthCalendar.
As for the WebDatePicker, I am guessing that the WebMonthCalendar is set as the calendar for the WebDatePicker. If so you may revise the following css off of ig_monthcalendar.css:
.igmc_HoverDay, .igmc_HoverDay.igmc_TodayDay
{
cursor:pointer !important;
background:#cccccc;
border:1px solid #999999;
}
If you have any questions, please let me know as well.
Looking forward to hearing from you.
Vivian,
Thanks for the WebMonthCalendar solution!!!
I seem to have the same issue in the WebDatePicker control.
I have tried applying the style override, as you suggested for WebMonthCalendar, to any hover css styling attribute I can find on WebDatePicker control with no luck. Any thoughts that might help me there as well?
Thank you for the additional information.
You may change the cursor on hover by overriding the default css styles via the HoverDayClassCss as follows:
<style type="text/css">
.hoverCursor
</style>
<ig:WebMonthCalendar ID="WebMonthCalendar1" runat="server">
<CssClasses HoverDayCssClass="hoverCursor" />
</ig:WebMonthCalendar>