Hi Marie ,
Place the sap.m.list control inside sap.m.ScrollContainer and set the height of the scroll container, as the content height inside the scroll container increases it will auto give a scroll bar
thanks
Viplove
Hello,
Thank for you answer and I am sorry for the delay
the sap.m.list is in a page and SAP do not recommend to use it
"Do not use nested scrolling
We do not recommend to use nested levels of scrolling, for example, when a page with enabled vertical scrolling contains a scroll container that has vertical scrolling too. Such combinations may lead to behavior that is unexpected both for programmers and users. "
I don't have a lot of experience but now, I am trying to use sap.ui.table.Table but when I display the information, I see 25 rows but the cells are empty.
var oTable = new sap.ui.table.Table({ title: "Table Example", visibleRowCount: 5, firstVisibleRow: 3, selectionMode : sap.ui.table.SelectionMode.Single, selectionBehavior: sap.ui.table.SelectionBehavior.Row }); oTable.addColumn(new sap.ui.table.Column({ label: new sap.ui.commons.Label({text: "Comment"}), template: new sap.ui.commons.TextView({value:"{JsonSes>Text}"}) })); oTable.setModel(this.getModel("JsonSes")); oTable.bindRows("JsonSes>/__SESDetailMessages");
Could you please help me?
Thank you!
Marie
Add comment