Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1000
WebMonthCalendar is showin Today in wrong month.
posted

I have a WebMontCalendar that has the option  HideOtherMonthDays="true".

When I see the month January it is drawing a colored box where the first of February used to be. How can I disable this?

 

 

Parents
No Data
Reply
  • 24497
    posted

    Hi Estanito,

    Thank you for report.
    That issue was fixed. Update will be available within coming service releases.

    For now you may get around that issue by forcing repainting calendar on client. One option is to repaint calendar explicitly on ClientEvents.Initialize. Another option is to use dummy ClientEvents.RenderDay. Below are examples:

    <script type="text/javascript">
    function WebMonthCalendar1_Initialize(sender, eventArgs)
    {
     sender.repaint();
    }
    </script>
    <ig:WebMonthCalendar ID="WebMonthCalendar1" runat="server" HideOtherMonthDays="True">
      <ClientEvents Initialize="WebMonthCalendar1_Initialize" />
    </ig:WebMonthCalendar>

    or

    <script type="text/javascript">
    function WebMonthCalendar1_RenderDay(sender, eventArgs){}
    </script>
    <ig:WebMonthCalendar ID="WebMonthCalendar1" runat="server" HideOtherMonthDays="True">
     <ClientEvents RenderDay="WebMonthCalendar1_RenderDay" />
    </ig:WebMonthCalendar>

Children
No Data