这是我的代码:
$(function () {
$("#dgv").datagrid({
width: "80%",
height: document.documentElement.clientHeight - 100,
nowrap: false,
striped: true,
singleSelect: true,
url: "../ajax/upFile.ashx",
remoteSout: false,
loadMsg: "数据正在加载,请稍后... ...",
columns: [[
{ field: "id", title: "编号", width: 100 },
{
field: "name", title: "名称", width: 200, align: 'center',
formatter: function (value, rowData, rowIndex) {
return '<a id="btnSeen" href="#;" onclick="DownLoand()" class="easyui-linkbutton" icon="icon-search">' + value + '</a>';
}
}
]],
onClickCell: function (rowIndex, field, value) {
alert("s");
}
});
easyui 的datagrid 的onClickCell事件为什么不执行 。
这里想弹出“s”
我靠,这么简陋的代码,神仙也难看出问题所在呀
解决