我将pivottable.js(在此处阅读http://www.wissel.net/stw/wisselblog.nsf之后)添加到xPages应用程序中。组件加载但是当我允许过滤数据的组件在我的xPage上完成它刷新整个页面而不仅仅是图表时,我遇到了问题。
以下是该应用程序的演示,您可以看到,当您点击某个类别的下拉菜单时,您可以进行过滤,一旦完成,它会进行部分刷新以过滤数据。 http://nicolas.kruchten.com/pivottable/examples/mps.html
在我的xPage上,当我过滤数据时,它会刷新整个页面。有没有办法防止这种行为?
以下是相关代码。未包含的代码只是从未修改的项目中获取,但如果需要,我可以包括。
我正在使用xpage上的自定义控件
<xc:ccPivot disableTheme="true"></xc:ccPivot></xp:view>
在自定义控件中,没有多少。我试过在页面底部调用脚本,但没有做任何更改。
<script type="text/javascript" src="callPivotTable"></script>
<xp:this.resources>
<xp:script src="/pivot.js" clientSide="true"></xp:script>
<xp:styleSheet href="/pivot.css"></xp:styleSheet>
<xp:script src="/jquery-ui-1.9.2.custom.min.js"
clientSide="true">
</xp:script>
<xp:script src="/d3_renderers.js" clientSide="true"></xp:script>
</xp:this.resources>
<div id="output" style="margin: 10px;"></div>
这是callPivotTable脚本
$(function(){
var derivers = $.pivotUtilities.derivers;
$.getJSON("./xRest.xsp/restService2", function(mps) {
$("#output").pivotUI(mps
);
});
});
你会注意到我并没有在这里调用jQuery作为资源。那是因为我使用的是加载jQuery的bootstrap4xpages扩展库。不确定这是否有所作为。
这是一个工作nsf的链接。它正在使用引导程序扩展库和bootstrapv2.3.2,但在bootstrap3中会加载相同的问题。 Link to nsf
答案 0 :(得分:2)
无需更改pivot.js代码。当在表单内部呈现数据透视表时,它根本不起作用。任何小部件刷新都会强制整个表单发布。无法通过代码更改使其工作,所以我关闭了表单生成,现在它按预期工作。
转到XPage属性(所有属性选项卡)并将属性createForm
设置为false
。或者在源代码中它应该是这样的:
<?xml version="1.0" encoding="UTF-8"?>
<xp:view
xmlns:xp="http://www.ibm.com/xsp/core"
xmlns:xc="http://www.ibm.com/xsp/custom"
createForm="false">
<xp:this.resources>
<xp:script
src="/pivot.js"
clientSide="true">
</xp:script>
<xp:styleSheet
href="/pivot.css"></xp:styleSheet>
<xp:script
src="/jquery-ui-1.9.2.custom.min.js"
clientSide="true">
</xp:script>
<xp:script
src="/jquery.ui.touch-punch.min.js"
clientSide="true">
</xp:script>
</xp:this.resources>
<xp:scriptBlock>
<xp:this.value><![CDATA[$( function() {
$("#output").pivotUI( [ {
color : "blue",
shape : "circle"
}, {
color : "red",
shape : "triangle"
} ], {
rows : [ "color" ],
cols : [ "shape" ]
});
});]]></xp:this.value>
</xp:scriptBlock>
<div
id="output"
style="margin: 10px;">
</div>
</xp:view>