I have repeatable section (not repeater) and inside it I have ouput field. How can I put the repeat index to this output? I want to bind outputs with index of current iteration. For example if I add 5 repeats I want to outputs show their index: 1,2,3,4,5. I know that there is functions like xxf:index, but they work only in repeater.
相关问题
- Re-initialize XBL component on xxforms-iteration-m
- Is anyone using XForms in their web applications?
- How can I set the relevant property of an Orbeon e
- Running Orbeon-Form-Builder-Generated-Form with Ja
- Orbeon index of repeat in repeatable section
相关文章
- How can I set the relevant property of an Orbeon e
- Running Orbeon-Form-Builder-Generated-Form with Ja
- Orbeon index of repeat in repeatable section
- Orbeon Custom metadata at form level
- Orbeon升级,从3.9到4.5:定制提交保存形式(Orbeon upgrade from 3.9
- XBL控件的属性(XBL control's attributes)
- 如何JSON转换为XML的Orbeon?(How to convert JSON to XML in
- 如何获得XForm中显示一个复选框?(How to get an XForm to display
Not obvious because the
xxf:repeat-position()
function works in the UI only, and the calculated values work in the model only.You could make changes by hand and write:
<xf:output value="xxf:repeat-position()"/>