我正在尝试通过使用不同的数据节点来重用子表单,例如单击更改xpath表达式的触发器,然后加载子表单。
为此,我创建了一个绑定元素,但我无法动态更改它。我知道如何更改实例节点值,所以我使我的绑定元素指向一个节点,但它不起作用。像这样:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:xf="http://www.w3.org/2002/xforms"
xmlns:ev="http://www.w3.org/2001/xml-events">
<head>
<xf:model xmlns="">
<xf:instance>
<tmp>
<configuration uri="/tmp/props"/>
<props>
<prop id="demo id 1" value="demo value1"/>
<prop id="demo id 2" value="demo value2"/>
</props>
</tmp>
</xf:instance>
<xf:bind id="dynamicNodeset" nodeset="string(/tmp/configuration/@uri)"/>
</xf:model>
</head>
<body>
<xf:repeat bind="dynamicNodeset">
<xf:output ref="prop/@id"/>
<xf:input ref="prop/@value" class="xforms-value"/>
</xf:repeat>
</body>
</html>
我也试过这个没有成功:
<xf:bind id="dynamicNodeset" nodeset="/tmp/configuration/@uri[string()]"/>
Any idea how can I achieve this?
还通过Js:
function changeBinding(modelId, bindId, newNodeset){
var model = document.getElementById(modelId).xfElement;
window.XsltForms_globals.openAction("XsltForms_change");
model.binds[0].nodeset = newNodeset;
model.setRebuilded(true);
model.addChange(bind);
window.XsltForms_globals.addChange(model);
window.XsltForms_globals.closeAction("XsltForms_change");
window.XsltForms_globals.refresh();
}
提前致谢。
答案 0 :(得分:1)
XPath 1.0中没有评估函数,但作为一种解决方法,如果表达式的变量部分受到限制,您始终只能使用谓词来选择相应的元素,例如/tmp/*[name() = substring-after(/tmp/configuration/@uri, '/tmp/)]
。