Just a quick question with hstack's "vpolicy"..does it apply at all? It's in the documentation but does not work. See sample below.
Code:
isc.HStack.create({height: "100%", width:"100%", backgroundColor:"red",vPolicy:"fill",hPolicy:"fill",members:[isc.ListGrid.create({
ID: "countryList",
width:"50%", height:300, alternateRecordStyles:true,
dataSource: worldDS,
fields:[
{name:"countryCode", title:"Code", width:50},
{name:"countryName", title:"Country"},
{name:"capital", title:"Capital"},
{name:"continent", title:"Continent"}
],
autoFetchData: true,
showFilterEditor: true
})]});
Comment