Hi folks,
I know this is a common issue but I've still haven't found a suitable solution.
I have a secondary data source to a .XML-file. This .XML-file looks like this:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Fixtures>
<Match>
<Type>Type A</Type>
<Date>Date</Date>
<Time>Time</Time>
<Home>Home</Home>
<Away>Away</Away>
</Match>
<Match>
<Type>Type A</Type>
<Date>Date</Date>
<Time>Time</Time>
<Home>Home</Home>
<Away>Away</Away>
</Match>
<Match>
<Type>Type B</Type>
<Date>Date</Date>
<Time>Time</Time>
<Home>Home</Home>
<Away>Away</Away>
</Match>
</Fixtures>
With this secondary data source I populate a repeating table.
Above the repeating table is a dropdown field in what the user can select a type (Type A, type B, type C, etc.).
Depending on what type the user has selected I want the repeating table to show only the corresponding matches from the .XML-File.
I received that with using a rule - at least I thought I did so.
But instead of showing both Matches when selecting "Type A" in the dropdown-field, the repeating table is showing only the first match.
Do you have any hints how I can receive that both matches with "Type A" are shown?
In reality there are further matches with Type A but I've shorten the .XML-File for the sake of clarity.
Thank you very much in advance for your support.
Cheers