Hi,
Firstly I'm sorry for my frequent questions, but I can'y find answers..
I want to use submission. I have three instances:
<xf:instance id="url"><value>
http://example.org</value></xf:instance>
<xf:instance id="separator"><value>?param=</value></xf:instance>
<xf:instance id="param"><value>param_value</value></xf:instance>
and I want to make reource of submission as concat of this three instances:
<xf:submission id=.. instance=..
mediatype="application/xml"
method="get"
resource="{instance('resource')}{instance('separator')}{instance('param')}"
replace="instance"
serialization="none"
I mean in result I want to have in resource:
http://example.org?param=param_valueI have tried to use concat function, but it is not working. How can I reach this effect ?