我想覆盖Primefaces数据表组件的功能。根据这个问题:How do I find and/or override JavaScript in Primefaces component based on widgetVar?可以使用PrimeFaces.widget.DataTable.prototype.
。但我想只为一个数据表覆盖此函数,而不是为所有数据。
这不起作用:
<p:dataTable widgetVar="myTable" ...>
</p:dataTable>
....
<script type="text/javascript">
$(document).ready(function(){
if (PF('myTable') !== undefined) {
PF('myTable').jq.datatable({
showCellEditor: function (c) {
console.log('my function');
}
});
}
});
</script>
这是应该如何完成的,还是我完全错了?
答案 0 :(得分:6)
使用我的一张表进行测试:
PF('myTable').showCellEditor = function() {
console.log('my function')
}
如果您需要,请不要忘记调用通用实现:
PF('myTable').showCellEditor = function() {
console.log('my function')
// call the generic implementation:
PrimeFaces.widget.DataTable.prototype.showCellEditor.call(this);
}
另见: