How to unchecked the default saturday checked in RadSchedulerRecurrenceEditor in weekly option.
It always time checked the saturday in weekly option of RadSchedulerRecurrenceEditor.
I want to unchecked all the days in weekly option.
thanks
Best Regards,
Jiten
3 Answers, 1 is accepted
0
Veronica
Telerik team
answered on 22 Jun 2011, 09:43 AM
Hello Jiteni,
You can use this jQuery approach in the handler of the OnClientFormCreated client-side event:
We used this function:
function OnClientFormCreated(sender, eventArgs)
{
$telerik.$('input[id=RadSchedulerRecurrenceEditor1_Form_WeeklyWeekDaySaturday]').attr('checked', false);
}
and then used RadSchedulerRecurrenceEditor control:
Also,
we used only this query:
function OnClientFormCreated(sender, eventArgs)
{
$telerik.$('input[id=RadSchedulerRecurrenceEditor1_Form_WeeklyWeekDaySaturday]').attr('checked', false);
}
It is not working.
please reply as soon as possible.
thanks
Best Regards
Mutum Jiten Singh
0
Veronica
Telerik team
answered on 30 Jun 2011, 08:12 AM
Hi Jiteni,
As far as I remember you've been using a RadDock control instead of the standart Advanced Form. That's why my solution includes the Id of the RadDock control when accessing the Saturday checkbox. Have you tried exactly the code I gave you?
Also one more note - you don't need the parenthesis at the end of the OnClientFormCreated event handler here: