[Xsltforms-support] upload inside of repeat not working?
Brought to you by:
alain-couthures
From: John M. <bic...@gm...> - 2013-01-24 04:40:57
|
Hi, I'm very new to xforms. Please excuse my lack of knowledge. I'm getting 'xforms-binding-exception' when I try to use the 'upload' control with a repeat. I'm using build 566 (though it's possible I didn't build correctly). <?xml version="1.0" encoding="UTF-8"?> <xf:group ref="/proposal/budget"> <xf:repeat nodeset="row" id="budget-row"> <xf:input ref="description"> <xf:label>Description</xf:label> </xf:input> <xf:input ref="items"> <xf:label># Items</xf:label> </xf:input> <xf:upload ref="supDoc" > <xf:filename ref="@filename" /> <xf:label>Upload a File</xf:label> </xf:upload> </xf:repeat> </xf:group> ------------------------- <proposal> <id>2</id> <budget> <row> <description>test</description> <items>21</items> <supDoc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:anyURI" filename=""/> </row> </budget> </proposal> ------------------------- Thanks, John |