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

open radwindow in scheduler.

1 Answer 55 Views
Window
This is a migrated thread and some comments may be shown as answers.
sandy
Top achievements
Rank 1
Iron
Veteran
sandy asked on 02 Jan 2013, 11:37 AM
Hi,
When am click the context menuitem(add appointment) in scheduler i want to open the radwindow.
any one help?

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 02 Jan 2013, 12:32 PM
Hi,

You can attach the OnClientTimeSlotContextMenuItemClicking event to achieve your scenario.

JS:
<script type="text/javascript">
    function OnClientTimeSlotContextMenuItemClicking(sender, args) {
        if (args.get_item().get_text() == "New Appointment") {
            window.radopen("", "RadWindow1");
        }
    }
</script>

Hope this helps.

Regards,
Princy.
Tags
Window
Asked by
sandy
Top achievements
Rank 1
Iron
Veteran
Answers by
Princy
Top achievements
Rank 2
Share this question
or