Javascript 如何在单击该行时打开包含该行详细信息的新网页';Asp中剑道UI网格字段内的s链接按钮?

Javascript 如何在单击该行时打开包含该行详细信息的新网页';Asp中剑道UI网格字段内的s链接按钮?,javascript,jquery,asp.net,kendo-ui,kendo-grid,Javascript,Jquery,Asp.net,Kendo Ui,Kendo Grid,我在谷歌上搜索,我没有得到我的要求,我的屏幕像 如果我单击系统名称,则表示我希望在另一个网页中显示行详细信息,如何操作? 我的代码像' var grid= $("#DivGrid").kendoGrid( { dataSource: DataSource4, scrollable: true, sortable: true, f

我在谷歌上搜索,我没有得到我的要求,我的屏幕像

如果我单击系统名称,则表示我希望在另一个网页中显示行详细信息,如何操作? 我的代码像'

      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: "&nbsp;", 
                        width: "190px" 
                    }       
                ]
            }).data("kendoGrid");
var grid=$(“#DivGrid”).kendoGrid(
{
数据源:数据源4,
可滚动:对,
可排序:是的,
可过滤:false,
可重定额:对,
可调整大小:正确,
pageable:对,
工具栏:[{文本:“添加新记录”,名称:“弹出”,图标类:“k-icon k-Add”},
可编辑:{
模式:“内联”
//模板:kendo.template($(“#CustomPoputTemplate”).html()
},
通航:对,
柱:
[  {
字段:“系统名称”,
标题:“系统名称”,
宽度:“130px”,
//模板:“”
模板:“”
//headerTemplate:“系统名称”
},
{
字段:“系统IP”,
标题:“系统IP”,
宽度:“100px”
},
{
字段:“系统类型”,
标题:“类型”,
宽度:“80px”,
编辑器:函数(容器、选项){
$("")
.attr(“数据绑定”,“值:SystemType”)
.appendTo(容器)
.kendoDropDownList({
数据源:[{text:--Select--”,值:“0”},{text:“PC”,值:“1”},{text:“膝上型电脑”,值:“2”},
dataTextField:“文本”,
dataValueField:“文本”
});
}
},
{
字段:“OSKey”,
标题:“操作系统密钥”,
宽度:“200px”
},
{ 
命令:[“编辑”、“销毁”],
标题:“,
宽度:“190px”
}       
]
}).数据(“kendoGrid”);
我想在另一个页面中显示行的详细信息我不知道?我搜索了谷歌,但没有找到, 帮我怎么办?
提前感谢

使用
窗口如何。打开