or

<div id="tabstrip" style="height: 100%; border: 0;">001.<div id="tabstrip" style="height: 100%; border: 1;"> 002. <ul> 003. <li>First tab</li> 004. <li>Second tab</li> 005. </ul> 006. <div> 007. 008. </div> 009. <div> 010. <div id="vertical" > 011. <div> 012. <div id="horizontal1" > 013. <div><div id="grid"></div></div> 014. <div><div id="grid1"></div></div> 015. </div> 016. </div> 017. <div> 018. <div id="horizontal2" > 019. <div></div> 020. <div></div> 021. </div> 022. </div> 023. <div> 024. <div id="horizontal3" > 025. <div></div> 026. <div></div> 027. </div> 028. </div> 029. </div> 030. </div> 031. <script type="text/javascript"> 032. $(document).ready(function() { 033. $("#tabstrip").kendoTabStrip(); 034. 035. $("#grid").kendoGrid({ 036. dataSource: { 037. data: createRandomData(50), 038. pageSize: 10 039. }, 040. height: 250, 041. groupable: true, 042. scrollable: true, 043. sortable: true, 044. pageable: true, 045. columns: [ 046. { 047. field: "FirstName", 048. title: "First Name" 049. }, 050. { 051. field: "LastName", 052. title: "Last Name" 053. }, 054. { 055. field: "City" 056. }, 057. { 058. field: "Title" 059. }, 060. { 061. field: "BirthDate", 062. title: "Birth Date", 063. template: '<#= kendo.toString(BirthDate,"dd MMMM yyyy") #>' 064. }, 065. { 066. field: "Age" 067. } 068. ] 069. }); 070. $("#grid1").kendoGrid({ 071. height: 250, 072. groupable: true, 073. scrollable: true, 074. sortable: true, 075. pageable: true, 076. columns: [ 077. { 078. field: "FirstName", 079. title: "First Name" 080. }, 081. { 082. field: "LastName", 083. title: "Last Name" 084. }, 085. 086. ] 087. }); 088. $("#vertical").kendoSplitter({ 089. orientation: "vertical", 090. panes: [ 091. { collapsible: true, size: "100%" }, 092. { collapsible: false }, 093. { collapsible: true, size: "100%" } 094. ] 095. }); 096. $("#horizontal1").kendoSplitter({ 097. orientation: "horizontal", 098. panes: [ 099. { collapsible: true, size: "100px" }, 100. { collapsible: false }, 101. { collapsible: true, size: "100%" }, 102. { resizable: true } 103. ] 104. }); 105. $("#horizontal2").kendoSplitter({ 106. orientation: "horizontal", 107. panes: [ 108. { collapsible: true, size: "100px" }, 109. { collapsible: false }, 110. { collapsible: true, size: "100%" }, 111. { resizable: true } 112. ] 113. }); 114. $("#horizontal3").kendoSplitter({ 115. orientation: "horizontal", 116. panes: [ 117. { collapsible: true, size: "100px" }, 118. { collapsible: false }, 119. { collapsible: true, size: "100%" }, 120. { resizable: true } 121. ] 122. }); 123. 124. }); 125. 126. 127. </script> 128. </div><div data-role="footer"> <div data-role="tabstrip"> <a href="#Home" data-icon="home">Home</a> <a href="External.html" data-icon="info">Details</a> </div></div><!DOCTYPE html><html><head> <title>External</title></head><body><div id="External" data-role="view" data-title="External" data-layout="mobile-tabstrip"></div></body></html>@(Html.Kendo().Grid<OnlineAB.Models.GoodsServiceModel>() .Name("GSSrcGrid") .Columns(columns => { columns.Bound(gs => gs.ID).Visible(false); columns.Bound(gs => gs.GSPrice).Groupable(false).Width(100); columns.Bound(gs => gs.GSTime).Width(100); columns.Bound(gs => gs.GSDescription).Width(200); columns.Bound(gs => gs.GSTitle).Width(150); columns.Bound(gs => gs.GSCode).Width(120); }) .DataSource(dataSource => dataSource .Ajax() .Read(read => read.Action("GetGoodsandService", "GS") .Data("GetParam")) .ServerOperation(false) ) .Sortable() .Scrollable() .Filterable() .RowAction(row => row.HtmlAttributes.Add("data-id", row.DataItem.ID)) .Selectable(s => s.Mode(GridSelectionMode.Single)) .Events(events => events.Change("GSSelectionChange")) )function GSSelectionChange() { var gsgrid = $('#GSSrcGrid').data('kendoGrid'); var goods = gsgrid.select(); var goodsID = goods.data("id"); alert(goodsID);}