我需要对这里找到的多个组件进行部分刷新:
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.
知道我做错了吗?
答案 0 :(得分:11)
XSP.partialRefreshPost方法需要客户端ID和可选参数。因此,在您的情况下,正确的语法是:
XSP.partialRefreshPost("#{id:txtProductType}", {});