I have a MobileList which I want to look like this:
[divider] Category 1
Item 1
Item 2
Item 3
[divider] Category 2Item 4
Item 5
Item 6
I have designed it like this:
[divider] Category 1Item 1
[divider] Category 2Item 4
I have the two categories returned via two separate REST calls. I mapped call 1 to Item 1, and call 2 to Item 4. The two calls work well, but the result looks like this because the service mapping adds each element to the bottom of the list:
[divider] Category 1
[divider] Category 2Item 1
Item 2
Item 3
Item 4
Item 5
Item 6
Is there a way to maintain the position of the header elements in the list?