This is a migrated thread and some comments may be shown as answers.

Customize the Recurrence Editor

1 Answer 102 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Scott
Top achievements
Rank 1
Scott asked on 06 Oct 2010, 05:48 PM
Hello,

I would like customize the scheduler so that the recurrence checkbox does not display, but the recurrence editor always displays.
I also need to customize the recurrence editor visually a little.

Is there some sample code to show me how to do this?

Thanks,

Scott

1 Answer, 1 is accepted

Sort by
0
Veronica
Telerik team
answered on 08 Oct 2010, 03:24 PM
Hi Scott,

You can set the recurrence checkbox to be checked by this JQuery code:

function pageLoad() {
            var $ = $telerik.$;
            $(".RecurrenceEditor").children().each(function(i) {
                if (i == 0) {
                    $($($(this).children()[0]).children()[0]).attr("checked", "checked");
                }
                else if (i == 1)
                    this.style.display = "block";
            });
        }

You can hide the checkbox via this Css Class:

.rsAdvChkWrap
        {
            visibility: hidden !important;
        }

Please let me know what customization do you want for the recurrence editor so I can advice you.

Hope this helps.

Sincerely yours,
Veronica Milcheva
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Scheduler
Asked by
Scott
Top achievements
Rank 1
Answers by
Veronica
Telerik team
Share this question
or