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

recurrence checkbox

1 Answer 86 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
arockiasamy
Top achievements
Rank 1
arockiasamy asked on 26 Jul 2010, 02:45 PM
Hi,

How to check the recurrence checkbox by default in recurrence editor (loading) (Q2 2010).
for radschedular , applied style

 

#RadScheduler1_Form_RecurrencePanel

{

display:inline !important;

}

kind regards
Arockiasamy

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 29 Jul 2010, 10:33 AM
Hi arockiasamy,

The following jQuery code will help you achieve this requirement:

<script type="text/javascript"
      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"
          });
      
   </script>

Note, that you don't need additional css with the above solution.


Greetings,
Peter
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
Peter
Telerik team
Share this question
or