标题中的jqgrid colnames(href)链接

时间:2013-11-18 12:23:24

标签: jqgrid

请告诉我如何在jqgrid工作参考中创建列名。

jQuery(document).ready(function(){ 
    jQuery("#table").jqGrid({
            url: 'test.php',
        imgpath: 'css/flick/images',
            datatype: 'json',
        height: 'auto',
        width: 1050,
        sortname: 'id',
            sortorder: "asc",
            mtype: 'POST',
            colNames: ['id', '<a href="index.php" >INDEX LINK</a>', 'notes'],
            colModel: [{name:'id', index:'id', width:320, align:'left', sortable:false, search:false},
                        {name:'data', index:'data', width:320, align:'left', sortable:false, search:false},
                        {name:'notes', index:'notes', width:320, align:'left', sortable:false, search:false}],
        rowNum: 50,
        viewrecords: false,
        shrinkToFit: false,
        hidegrid: false,
        loadonce: true
    });
});

工具提示显示引用是继续但不会出现 - 不活动

1 个答案:

答案 0 :(得分:0)

不确定这是否是正确的解决方案,但这有效,

jQuery(document).ready(function() {
    $("#th_id").click(function() {
      window.open('http://www.google.com');
    });
});

这是Fiddle。希望这会有所帮助。