0

每个帮助我让一个 XSP.partialRefreshGet 工作。这对我来说很好用。谢谢你。现在我需要多次刷新才能工作:

XSP.partialRefreshGet("#{txtRateType}", {
   onComplete: function() {
    XSP.partialRefreshGet("#{CurrentBalancesSection}", {
        onComplete: function() {
            XSP.partialRefreshGet("#{PricingSection}}", {});
        }
    });
 }
});

我收到运行时错误。知道我做错了什么吗?

4

1 回答 1

3

你又错过了 id 部分(而且你有一个额外的花括号),布鲁斯:-)

XSP.partialRefreshGet("#{id:txtRateType}", {
   onComplete: function() {
    XSP.partialRefreshGet("#{id:CurrentBalancesSection}", {
        onComplete: function() {
            XSP.partialRefreshGet("#{id:PricingSection}", {});
        }
    });
 }
});

这是客户端 JS,功能需要客户端 ID。您使用 {id: 告诉 XPages 返回服务器端组件的客户端 ID。

于 2012-11-07T19:29:10.737 回答