Hi I am trying to show a single list that fetches data from two different oModels.
var Countries = {
"countries":[
{
'country' : "AUS",
'country_name' : "Australia"
},
{
'country' : "USA",
'country_name' : "United States of America"
},
]
};
var CountriesStatus = {
"countries":[
{
'country':"AUS",
'status':"inactive"
},
{
'country':"USA",
'status':"active"
}
]
};
Is it possible to load a single list where the title is Countries>country_name
and description is CountriesStatus>status