1

我需要对多个组件进行部分刷新,如下所示:

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.

知道我做错了什么吗?

4

1 回答 1

11

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

XSP.partialRefreshPost("#{id:txtProductType}", {});
于 2012-11-06T21:09:53.590 回答