我想刷新由客户端 Javascript 触发的重复控件。有趣的是,我的数据源是一个 JDBC 查询,这就是我不只是进行部分刷新的原因。我已经看到有关使用 XHR 请求执行此操作的页面,但我看不到如何刷新 JDBC 数据以捕获新信息。我可以用旧数据刷新重复控件,而不是新数据。
我看到重复控制刷新错误 ,它谈到可能需要超时,因为运行时不知道新数据。在手动更改数据库中的某些内容并等待一分钟后,我已经运行了 XHR,但仍然有过时的信息。
我可以在 RPC 调用中更新变量(jdbcPendingSummary)吗?如果不能,我可以回调服务器以触发 CSJS 函数内部的刷新吗?
<xp:this.data>
<xe:jdbcQuery connectionName="testDB"
sqlQuery="EXEC ptoGetPendingRequests #{sessionScope.userID}"
var="jdbcPendingSummary" />
</xp:this.data>
<xe:jsonRpcService id="ptoRPC" serviceName="ptoRPC">
<xe:this.methods>
<xe:remoteMethod name="createNewRequest">
<xe:this.script><![CDATA[
javaBeanObject.ptoCreateRequest(#{sessionScope.userID}, startDate, endDate, comment, d1,....,d15);
// Can I update the datasource var here?
]]></xe:this.script>
<xe:this.arguments>
<xe:remoteMethodArg name="startDate" type="string"></xe:remoteMethodArg>
..........
<xe:remoteMethodArg name="d15" type="number"></xe:remoteMethodArg>
</xe:this.arguments>
</xe:remoteMethod>
</xe:this.methods>
</xe:jsonRpcService>
<xp:scriptBlock id="scriptBlock1">
<xp:this.value><![CDATA[
function createNewRequest(startDateID, endDateID, commentID, hiddenDivID, requestID) {
ptoRPC.createNewRequest(dojo.byId(startDateID).value, dojo.byId(endDateID).value, ........).addCallback( function(response) {
// ????? Refreshes the Repeat Control, but has the stale data.
setTimeout(
function() {
XSP.partialRefreshGet(requestID, {onComplete: function(responseData) { } })
// Or how about updating the datasource var here?
}, 8000);
});
}
]]></xp:this.value>
</xp:scriptBlock>