Hi,
that is good news so far.
I think, that the reloading is working, but in order to actually see different options in your option list, you have to use the selected value from the "Holiday Region"-field inside the sql statement of the "Hotel"-sql, in order to find those Hotels which belong to a specific region.
This is done with an sql where statement and placeholder, which you have to your select-sql statement.
As the "Holiday Region" itself is a field of type select (or selectsql), you have to use following syntax
Code:
where dbfieldname in ${input:holidayregionfieldname[]}
where the "dbfieldname" is the name of the "Hotel Region" field in the "Hotels" table in the database and "holidayrefionfieldname" is the field name of the "Hotel Region" form field (which is the value of the name option in the field configuration).
If this where statement is incorrect (using the wrong place holder or the wrong syntax or the wrong dbfieldname) it will simply return zero options.
Regards,
Aicha