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
3550
Add parameters to RenderDay event
posted

I work with the RenderDay event, of WebMonthCalendar .

I want to pass the event additional parameters.

Something like:

RednereDay = "WebMonthCalendar(WebDropDown1.CurrentValue)"

How to do?

Parents
  • 37874
    posted

    Hi drpoalim,

    What exactly are you trying to achieve? The RenderDay event accepts two parameters - the WebMonthCalendar client-side object and the event object. If you want to get the current value of a WebDropDown on the page, you can use the following code:

    var dropDown = $find("WebDropDown1");

    var currentValue = dropDown.get_currentValue(); 

    Let me know if you have any questions.

Reply Children