Reputation: 5810
I have used this to chain dynamic data drop downs in an Orbeon application using the following services:
1. /xforms-sandbox/service/zip-states
2. /xforms-sandbox/service/zip-cities?state-abbreviation={../state}
3. /xforms-sandbox/service/zip-zips?state-abbreviation={../state}&city={../city}
I have few questions:
{../state}
- How it retrieve the state value when it changed?state-abbreviation
?Upvotes: 0
Views: 218
Reputation: 31743
state
changes, {../state}
will return a different value, so the URL for the service will change, so the Dynamic dropdown will load again that URL to retrieve potentially new data.Upvotes: 1