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

Recurence Editor

1 Answer 25 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
arockiasamy
Top achievements
Rank 1
arockiasamy asked on 28 Jul 2010, 04:25 PM
hi,

-------------------------

 var editor =  $find("<%= RecurrenceEditor1.ClientID %>");;

    var rrule = editor.get_recurrenceRule();

   alert (rrule );
 // alert ( '<%=RecurrenceEditor1.RecurrenceRuleText %>');
-------------------------------------------------------------------
In javascript I need this string
// Need of rrule in string like DTSTART:20100708T000000Z  DTEND:20100724T000000Z  RRULE:FREQ=MONTHLY;INTERVAL=1;BYSETPOS=1;BYDAY=MO,TU,WE,TH,FR,SA,SU 

or
When I send the rrule in webservice,
it should deserialize like string  DTSTART:20100708T000000Z  DTEND:20100724T000000Z  RRULE:FREQ=MONTHLY;INTERVAL=1;BYSETPOS=1;BYDAY=MO,TU,WE,TH,FR,SA,SU 

hurry please
kind regards
I.Arockiasamy

1 Answer, 1 is accepted

Sort by
0
T. Tsonev
Telerik team
answered on 03 Aug 2010, 08:35 AM
Hello,

Please use the toString() method of the recurrence rule:

editor.get_recurrenceRule().toString();

I hope this helps.

Sincerely yours,
Tsvetomir Tsonev
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
arockiasamy
Top achievements
Rank 1
Answers by
T. Tsonev
Telerik team
Share this question
or