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

RadScheduler - Reminder , change behavior of click on "Open Item"

5 Answers 65 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Peter
Top achievements
Rank 1
Peter asked on 14 Jun 2012, 02:12 PM
How i can change behavior of click on Button "Open Item" in Reminder dialog?

There are events for Triggering, Snoozing, Dismissing, but not for this. I don't wont to open AdvancedForm, but my own page in radwindow.

5 Answers, 1 is accepted

Sort by
0
Accepted
Plamen
Telerik team
answered on 19 Jun 2012, 08:50 AM
Hi Peter,

 
If you want to change the behavior of click on "Open Item" you will have to override the default function as in the code below:

Telerik.Web.UI.RadScheduler.prototype._openReminderItemClicked = function (sender, eventArgs)
   {
       
      window.location = "http://www.telerik.com/";
       this._hideReminderDialog();
   };

You can also refer to this on-line demo where is explained how to open RadWindow from javascript.

Hope this will help you.

Greetings,
Plamen Zdravkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Peter
Top achievements
Rank 1
answered on 25 Jun 2012, 11:17 AM
Great, thank you :)
0
Ashish
Top achievements
Rank 1
answered on 09 Nov 2015, 06:43 AM
You can also Enable False the Advance Form="False" in UI Page
0
Вячеслав
Top achievements
Rank 1
answered on 28 Jan 2016, 01:48 PM
I have similar question. How I can hide 'Open Item' button?
0
Nencho
Telerik team
answered on 02 Feb 2016, 09:07 AM
Hello Вячеслав,

In order to hide the Open Item button from the reminder form, you can use the following css style rune:

<style type="text/css">
       .rsRemOpenItemBtn {
           display: none !important;
       }
   </style>

Hope this would help.

Regards,
Nencho
Telerik
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 Feedback Portal and vote to affect the priority of the items
Tags
General Discussions
Asked by
Peter
Top achievements
Rank 1
Answers by
Plamen
Telerik team
Peter
Top achievements
Rank 1
Ashish
Top achievements
Rank 1
Вячеслав
Top achievements
Rank 1
Nencho
Telerik team
Share this question
or