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

RadSchedulerRecurrenceEditor hidden label

1 Answer 80 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Jiju
Top achievements
Rank 1
Jiju asked on 14 May 2014, 05:18 AM
Hi,

when I upgrade the telerik version from 2012 to 2014 q1, it shows text 'hidden label' in RadSchedulerRecurrenceEditor as shown in image in my project, How can i remove that label?

thanks

1 Answer, 1 is accepted

Sort by
0
Accepted
Nencho
Telerik team
answered on 16 May 2014, 11:50 AM
Hello Jiju,

Indeed there are several hidden labels in the Edit/Insert form of the RadScheduler and probably some custom styles that you use on your page had made them visible. Please try using the following approach with jQuery in order to hide them, using the OnClientFormCreated client-side event:

<script type="text/javascript">
       function OnClientFormCreated(sender, eventArgs) {
           $telerik.$("label.rsHidden").hide();
       }
   </script>


Regards,
Nencho
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Scheduler
Asked by
Jiju
Top achievements
Rank 1
Answers by
Nencho
Telerik team
Share this question
or