Is this supported for TileGrid? I tried adding the property but it does not work. If it is not supported, how do I modify it so that I can have the same functionality?
data is in sample isomorphic/system/reference/SmartClient_Explorer.html#tilingBasic
data is in sample isomorphic/system/reference/SmartClient_Explorer.html#tilingBasic
Code:
isc.TileGrid.create({
tileWidth:150,
tileHeight:190,
height:400,
width:"100%",
showAllRecords:true,groupByField:"status",
data:animalData,
fields: [
{name:"picture",
type:"image", imageURLPrefix:"/isomorphic/system/reference/inlineExamples/tiles/images/"},
{name:"commonName"},
{name:"status"}
]
});
Comment