我想将带有 jquery 的单击功能添加到数据表行内的 commandButtons 中,此按钮显示一个对话框,我想用 javascript 构建内容。但在 javascript 中定义的函数甚至没有被调用。
我有这个:
<p:datatable id="tbl1">
<p:commandButton id="button1" onclick="dlg.show()">
</p:commandButton>
</p:datatable>
在我的 javascript
$("#form:tbl1:0:button1").click(function(){
//...some js functionality to show on the dialog
});
任何建议将不胜感激
祝大家有个愉快的一天