部分刷新时运行时错误

时间:2012-11-06 20:37:33

标签: xpages

我需要对这里找到的多个组件进行部分刷新:

http://xpageswiki.com/web/youatnotes/wiki-xpages.nsf/dx/Work_with_events_and_partial_or_full_refresh

所以我想我只用一个组件就可以从小处开始并放置代码:

XSP.partialRefreshPost("#{txtProductType}");

在客户端,单击单选按钮组的事件。当页面显示时,我得到:

The runtime has encountered an unexpected error.

知道我做错了吗?

1 个答案:

答案 0 :(得分:11)

XSP.partialRefreshPost方法需要客户端ID和可选参数。因此,在您的情况下,正确的语法是:

XSP.partialRefreshPost("#{id:txtProductType}", {});