参考ADF Code Corner How-to handle and respond to mouse double clicks in ADF Faces tables.
在双击table 的某一行时 ,实现弹出popup,popup中弹出子table的数据.
在主table的属性结尾加上
clientListener 捕获客户端双击行这个事件,并传递给js 的handleTableDoubleClick方法;
在页面af:document下 写handleTableDoubleClick事件
function handleTableDoubleClick(evt){ var table = evt.getSource();
AdfCustomEvent.queue(table, "TableDoubleClickEvent",{}, true);
evt.cancel();
}