我用jsf1.1,commandlink的onclick属性无效,怎么调用我的js函数啊?

fourfire 2008-04-11
UIComponent footer = this.getFacet("footer");
String clientId = this.getClientId(context);
if (footer != null) {
List cs = footer.getChildren();
for (Iterator iterator = cs.iterator(); iterator.hasNext();) {
UIComponent o = (UIComponent) iterator.next();
System.out.println(o.getClass());
if(o instanceof HtmlCommandLink)
{
((HtmlCommandLink)o).setOnclick("alert(''),return false;");
}
}
}
我用这个没作用
fourfire 2008-04-11
ltian 写道
用JSF作一个通用的翻页子页面没那么麻烦,估计你是走错路了。

翻页已经搞定了,增加查询和导出的功能
stenlylee 2008-04-19
JSF1.1的commandButton onclick事件无法使用,要用mousedown代替
terryzhou 2008-05-04
jsf1.1中onclick会自动生成代码...要btn执行你定义的js.必须在后面加return false;
spspsp 2008-11-19
用 if(!confirm('OK?')) return false;
Global site tag (gtag.js) - Google Analytics