This question is locked. New answers and comments are not allowed.
I have since switched over to using the DatePicker with a POST, but initially when I was using the calendar with select action, the calendar was triggering the select event on mouse-over, needless to say, that was not a good thing since the controller was then performing db queries every time you moused over a date in the calendar.
So, is this by design? or a bug. My thinking is that you should only be calling the server once a date was chosen. I guess I could have poked at the java code since it would seem its the culprit preforming the mouse-over event. However, I always hesitate to mess with distributions unless absolutely necessary since I tend to forget I actually mod'ed something and thus am prone to overriding and breaking on upgrades :)
For now, I like the DatePicker better anyway where I was using the calendar since I can control the Min/Max date.
Here is the view code I was using, maybe incorrectly
So, is this by design? or a bug. My thinking is that you should only be calling the server once a date was chosen. I guess I could have poked at the java code since it would seem its the culprit preforming the mouse-over event. However, I always hesitate to mess with distributions unless absolutely necessary since I tend to forget I actually mod'ed something and thus am prone to overriding and breaking on upgrades :)
For now, I like the DatePicker better anyway where I was using the calendar since I can control the Min/Max date.
Here is the view code I was using, maybe incorrectly
| <%= Html.Telerik().Calendar() |
| .Name("Calendar") |
| .Selection(settings => settings |
| .Action("UserTasks", "ClientTasks", new { date = "{0}", id = Model.id, userId = ViewData["userId"] })) |
| .Value(DateTime.Today) |
| %> |