|
Hallo
I'm writing my own control and I have following problem. I want to trigger action on change one of instance. Is it possible? I tried do that in this way:
<xf:send ev:observer="instance_id" ev:event="xforms-value-changed" submission="my-submission"/>
but it doesn't not working. It working only in case, when I put <send> inside other control, for example:
<xf:input id="my_input" ref="instance('instance_id')"> <xf:send ev:event="xforms-value-changed" submission="my-submission"/> </xf:input>
Actually I would do that in this way, but I haven't access to #my_input, because it is localized outside my control. So, in simple way, I want to trigger send-submission on change input localized outside of my control xbl. How can I do that?
regards,
Tom
|