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

Maximizing radwindow event.

1 Answer 76 Views
Window
This is a migrated thread and some comments may be shown as answers.
Ivy
Top achievements
Rank 1
Ivy asked on 08 Aug 2013, 08:51 AM
Hi

Is there any event available for radwindow that will fire on maximizing the radwindow?

Thanks for replying
Ivy

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 08 Aug 2013, 09:16 AM
Hi Ivy,

You can attach the OnClientCommand event to the RadWindow  and check the Command Name to achieve your requirement. Please check the following JavaScript I tried which works fine at my end.

JavaScript:
<script type="text/javascript">
    function OnClientCommand(sender, args) {
        if (args.get_commandName() == "Maximize") {
            alert("RadWindow Maximized");
        }
    }
</script>

Thanks,
Shinu.
Tags
Window
Asked by
Ivy
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or