When the size of the tile is larger than the space provided, it will automatically scroll the the container when clicking a tile. Can I disable this?
isc.TileGrid.create({
height: 500,
width: 500,
data: [
{}
],
tileHeight: 800,
tileWidth: 200,
createTile: function(){
return isc.Label.create({
contents:"<div style='height: 100%; width: 100%; background-image: linear-gradient(red, yellow);'></div>"
})
}
})
SmartClient Version: v10.0p_2015-12-02/Pro Deployment (built 2015-12-02)
isc.TileGrid.create({
height: 500,
width: 500,
data: [
{}
],
tileHeight: 800,
tileWidth: 200,
createTile: function(){
return isc.Label.create({
contents:"<div style='height: 100%; width: 100%; background-image: linear-gradient(red, yellow);'></div>"
})
}
})
SmartClient Version: v10.0p_2015-12-02/Pro Deployment (built 2015-12-02)
Comment