<ej:Grid ID="Grid" runat="server" AllowPaging="True" Locale="es-ES" ShowColumnChooser="true" OnServerDeleteRow="Grid_ServerDeleteRow">
<ClientSideEvents ActionComplete="complete" ActionBegin="begin" />
. . .
</ej:Grid>
<script type="text/javascript">
function complete(args) {
if (args.requestType == "columnchooser") {
//TO do your functionality (or)
//Do the ajax post back to call the method in server side
}
}
function begin(args) {
if (args.requestType == "columnchooser") {
//TO do your functionality (or)
//Do the ajax post back to call the method in server side }
}
</script> |
<head>
<title>My first HTML page</title>
<!-- CSS and Script reference section -->
<link rel='nofollow' href="content/web/default-theme/ej.web.all.min.css" rel="stylesheet" />
<script src="scripts/jquery-1.10.2.min.js">
</script> <script src="scripts/jsrender.min.js"></script>
<script src="scripts/ej.web.all.min.js"></script>
<script src="scripts/i18n/ej.culture.vi-VN.min.js">
</script> <script src="scripts/i18n/ej.culture.fr-FR.min.js"></script>
|