What I am trying to accomplish, I have a scrollable list and currently on value change it is executing a refresh script. Is it possible that when a record is deleted that I can also call the refresh script?
Below is the current code.
<xh:td>
<xf:select1 id="VENDOR_ONBOARDING_FUND_NUMBER-control" appearance="compact"
bind="VENDOR_ONBOARDING_FUND_NUMBER-bind">
<xf:label ref="$form-resources/VENDOR_ONBOARDING_FUND_NUMBER/label"/>
<xf:hint ref="$form-resources/VENDOR_ONBOARDING_FUND_NUMBER/hint"/>
<xf:alert ref="$fr-resources/detail/labels/alert"/>
<xf:itemset ref="$form-resources/VENDOR_ONBOARDING_FUND_NUMBER/item">
<xf:label ref="label"/>
<xf:value ref="value"/>
</xf:itemset>
<xf:action ev:event="xforms-value-changed">
<xxf:script>callJQueryRefresh()</xxf:script>
</xf:action>
</xf:select1>
</xh:td>
<xh:td/>