javascript - how to open new Web page with that Row details when click that Row's Link button inside the Kendo UI Grid Field in Asp? -
javascript - how to open new Web page with that Row details when click that Row's Link button inside the Kendo UI Grid Field in Asp? -
i searched on google, didnt requirement, screen
if click scheme name means want display row details in web page how it? code like'
var grid= $("#divgrid").kendogrid( { datasource: datasource4, scrollable: true, sortable: true, filterable: false, reorderable: true, resizable: true, pageable: true, toolbar: [ { text : "add new record", name: "popup", iconclass: "k-icon k-add"} ], editable : { mode : "inline" // template: kendo.template($("#custompopuptemplate").html()) }, navigable: true, columns: [ { field: "systemname", title: "system name", width:"130px", // template: '<a href="\\#" id="link1" onclick="newwindow()" class="k-linkbutton" >#= systemname #</a>' template:'<a href class="list k-linkbutton" id="#= systemid#" >#= systemname #</a>' // headertemplate: ' <asp:linkbutton id="linkbutton2" text="system name">system name</asp:linkbutton>' }, { field: "systemip", title: "system ip", width:"100px" }, { field: "systemtype", title: "type", width:"80px", editor: function (container, options) { $("<input />") .attr("data-bind", "value:systemtype") .appendto(container) .kendodropdownlist({ datasource: [ { text: "--select--" ,value: "0"},{ text: "pc" ,value: "1"},{ text: "laptop" ,value: "2" }], datatextfield: "text", datavaluefield: "text" }); } }, { field: "oskey", title: "os key", width:"200px" }, { command: ["edit","destroy"], title: " ", width: "190px" } ] }).data("kendogrid");
i want display row details in wen page don't have thought ? searched google didn't get, help me how ? in advance!!!
javascript jquery asp.net kendo-ui kendo-grid
Comments
Post a Comment