Version

idFromMouse Method

Gets id of active element in calendar from the mouse event of browser. That is method used internally and can be used publically by advanced applications.
Syntax
ASP.NET Ajax Javascript (Specification) 
function idFromMouse( 
   e : {Any}
) : Number;
ASP.NET Ajax Javascript (Usage) 
var resultVar = instanceOfWebMonthCalendar.idFromMouse({Any});

Parameters

e
Event of browser.

Return Value

List of possible values: -1 - unknown; 0..41 - day in calendar grid; 42..47 - week number, where week in grid=id-42; 500 - previous month button; 501 - next month button; 502 - drop down button for list of months; 503 - drop down button for list of years; 504 - today button (footer); 601..612 - item in drop down list of months, where month=id-600; 701..10699 - item in drop down list of years, where year=id-700.
See Also