cancel
Showing results for 
Search instead for 
Did you mean: 

Vertical scroll bar appearing??

0 Kudos

Hi,

I have put 4 custom tiles inside the vertical layout.

<l:VerticalLayout class="sapUiSmallMargin" >

  <CustomTile xmlns="sap.m"

  id="oCustom1" width="20rem" height="35rem">

  <content>

  <HBox xmlns="sap.m" id="id1">

  <vbm:GeoMap id="vbi1" width="150px" height="236px"  initialPosition="72.8258;18.9750;0">

   <vbm:vos>

  <vbm:Spots spots="{oModel1>/Spots}" >

  <vbm:Spot  position="{oModel1>pos}" tooltip="{oModel1>tooltip}"  />

  </vbm:Spots>

    </vbm:vos>

    </vbm:GeoMap>

      </HBox>

  </content>

    </CustomTile>

Like above I have 3 more custom tiles, but in UI only 3 are appearing and vertical scroll bar is also not coming to scroll down.

Can  anyone pls suggest, is it not possible to have vertical scroll for tiles.

Regards,

Chandru.

View Entire Topic
saivellanki
Active Contributor
0 Kudos

Hi Chandru,

Are you using sap.m.Page control for the view content? If so, did you set enableScrolling property to "true" for page (it should be default as 'true' but check once).


Regards,

Sai Vellanki.

0 Kudos

Thanks Sai Vellanki.

Somehow I missed to add <Page> tag itself.

After adding, vertical scroll is appearing.

Regards,

Chandru.