求大神如何在easyui datagrid 中点击超连接出来一个表格

    $("#teacherGrid").datagrid({
        fit : true,         
        url : '../findTeacherWithPage',
        fitColumns : true,
        toolbar : '#tb',
        striped : true,
        nowrap : false,
        pagination : true,
        rownumbers : true,
        singleSelect : false,

        columns : [ [ {
            field : 'id',
            checkbox : true,
        }, {
            field : 'teacherName',
            title : '教师名称',
            width : 100,
            align : 'center'
        },  {
            field : 'Sex',
            title : '性别',
            width : 100,
            align : 'center'
        }, {
            field : 'teacherNumber',
            title : '联系电话',
            width : 100,
            align : 'center'
        }, {
            field : 'teacherapartment',
            title : '地址',
            width : 100,
            align : 'center',
            formatter : function(value, rows, index) {
                if (value != null) {
                    return value.TerAName;
                } else {
                    return '';
                }
            }
        }, {
            field : 'Look',
            title : '所教学生',
            width : 100,
            align : 'center',
        }

        ] ]
    });
});

在所教学生那一列加个超连接,点击出现一个表格 上面显示的是学生信息。新手求大神

参考:http://blog.csdn.net/liuyanlinglanq/article/details/43988275

链接的href指向javascript:showmywindow