gpt4 book ai didi

javascript - 为什么 jqgrid formatoption "onClick"会自动加载,而不是在单击单元格时加载?

转载 作者:行者123 更新时间:2023-12-03 06:46:41 25 4
gpt4 key购买 nike

为什么 onClick 会自动调用,而不是在我单击单元格时调用?我希望能够单击单元格,然后加载页面。代码:

    colNames:['Name','Status', 'Created On', 'Update By', 'Updated On', 'RetentionDays','ValidityTime','Edit'],
colModel:[
{
name: 'name', width:100,editable: true, edittype:'select',

formatter: "dynamicLink",
"formatoptions":{"onClick":$( "#contents" ).load("jsp/consumers.jsp")},

xmlmap: function (obj) {
return $(obj).attr('name');
}

},

编辑:

$(文档).ready(函数() {

calEventTypes(eventTypesUrl);
$("#eventsDiv").click(function(){
$('#eventsErrorDiv').css("visibility", "hidden");
$('#eventsErrorDiv').css("display", "none");

});
$("#jqGrid").jqGrid({
hidegrid: false,
datatype: 'xmlstring',
datastr : xmlData,
colNames:['Name','Status', 'Created On', 'Update By', 'Updated On', 'RetentionDays','ValidityTime','Edit'],
colModel:[
{
name: 'name', width:100,editable: true, edittype:'select',

formatter: "showlink", idName: null,
onClick: function (options) {
alert("It's clicked!\nI'm going to Google...");
window.location = "https://www.google.com/";

},

xmlmap: function (obj) {
return $(obj).attr('name');
}
},

最佳答案

处理程序必须包装在函数中:

        "formatoptions":{"onClick": function() {
$( "#contents" ).load("jsp/consumers.jsp");
}},

关于javascript - 为什么 jqgrid formatoption "onClick"会自动加载,而不是在单击单元格时加载?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37706664/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com