or
<footer data-role="footer"> <div data-role="tabstrip"> <a>Sign In</a> <a>Register</a> </div></footer>Server: Apache-Coyote/1.1X-Powered-By: Servlet 2.4; JBoss-4.2.3.GA (build: SVNTag=JBoss_4_2_3_GA date=200807181417)/JBossWeb-2.0x-ua-compatible: IE=EmulateIE7X-SAS-STP-ERROR: -34Cache-Control: no-cache, no-storeContent-Type: text/html;charset=UTF-8Transfer-Encoding: chunkedDate: Fri, 11 Jan 2013 15:17:29 GMTresult = cache.find(options.data);if(result !== undefined) { success(result);} else { options.success = function(result) { cache.add(options.data, result); success(result); // I AM HERE }; $.ajax(options);} @(Html.Kendo().Grid(Model) .Name("tblGrid") .Columns(columns => { columns.Bound(w => w.Id).Hidden(); columns.Bound(w => w.IncidentType).Width(160); columns.Bound(w => w.Location).Width(180); columns.Bound(w => w.IncidentDateTime).Width(120).Format("{0: MM/dd/yyyy H:mm tt}"); columns.Bound(w => w.PostDateTime).Width(120).Format("{0: MM/dd/yyyy H:mm tt}"); }) .DataSource(dataSource => dataSource .Server() .Model(model => model.Id(w => w.Id)) .PageSize(15) .Create("Editing_Create", "Grid") ) .Events(events => events.Change("rowClick")) .Groupable() .Pageable() .Sortable() .Selectable() .Filterable() )<script type="text/javascript"> function rowClick(e) { alert("click happened, what now?"); }</script>