Hi, given the example above, How do I load the cities with a given id # into a data container.
My app allows you to choose a state, Once you choose a state I want the cities to show up in a different layout cell. How would i go about in doing so.
I already have ;(if its even right)
datacities.load(“States.xml”,getCities(ID));
function getCities(ID){
//a and b - ids of cells, where dataviews need to be placed
var datastates = layout.cells("a").attachDataView({
...
});
var datacities = layout.cells("b").attachDataView({
...
});
Hi, thank you for your quick reply but i wasn’t able to integrate that into my code. I have attached an Image as well as the code for a better understanding… I hope you can help me thanks!!