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

[Solved] RADGrid's PageIndexChanged event

1 Answer 184 Views
Grid
This is a migrated thread and some comments may be shown as answers.
celerity12
Top achievements
Rank 1
celerity12 asked on 19 Mar 2014, 03:31 PM
Do we have client side equivalent of RADGrid's PageIndexChanged event?

Thanks

1 Answer, 1 is accepted

Sort by
0
Eyup
Telerik team
answered on 24 Mar 2014, 08:27 AM
Hello,

You can use the following event handler:
<ClientSettings>
    <ClientEvents OnCommand="gridCommand" />
</ClientSettings>
JavaScript:
function gridCommand(sender, args) {
    if (args.get_commandName() == "Page") {
        alert("Page Index Changing");
    }
}

Hope this helps.

Regards,
Eyup
Telerik
 

Build cross-platform mobile apps using Visual Studio and .NET. Register for the online webinar on 03/27/2014, 11:00AM US ET.. Seats are limited.

 
Tags
Grid
Asked by
celerity12
Top achievements
Rank 1
Answers by
Eyup
Telerik team
Share this question
or