当我右键单击网格中的行时,我希望选中该复选框。我的应用程序仅支持javascript。它不支持jquery。所以请用javascript发送你的答案。 我使用以下代码激活右键单击事件并获取我右键单击的行的ID值。请帮我勾选相应行的复选框。
this.gridConnections.push(aspect.after(this.grid,“onRowContextMenu”,lang.hitch(this,function(evt){
var rowID = evt.rowId;
console.log("right click");
event.stop(evt);
}), true));
答案 0 :(得分:0)
一旦你有了行对象,你也可以获得该行的复选框
this.yourcheckbox
或dijit.byId("yourcheckbox")
。然后使用
this.yourcheckbox.set("checked",true)
或
dijit.byId("yourcheckbox").set("checked",true);