Dataset:
[Name(string)]
[Detail(string)]
[Type(string)]
This dataset is bound to a list. I want to have multiple detail sections in the list to allow me to lay the rows out differently depending on the 'Type'.
What I want:
List:
[Row1]
Detail1 - Name & Detail (Visable = True)
Detail2 - Detail (Visable = False)
[Row2]
Detail1 - Name & Detail (Visable = False)
Detail2 - Detail (Visable = True)
[Row3]
Detail1 - Name & Detail (Visable = True)
Detail2 - Detail (Visable = False)
The problem I am having is that all the 'Detail1' rows are printing out THEN the 'Detail2' rows are printing out. I want to see Detail1, Detail2, Detail1 (controlling their visability w/ expressions)