【发布时间】:2017-07-21 03:58:25
【问题描述】:
我正在使用 UI5 TreeTable 来渲染显示数据,我正在像这样实例化
<table:TreeTable
visibleRowCountMode="Auto"
selectionMode="Single"
enableSelectAll="false"
minAutoRowCount="-1"
rowHeight="40"
columnHeaderHeight="40"
height="100%"
rows="{/rows}">
<table:columns>
<table:Column width="30%" id="dataListColumn">
//column template
</table:Column>
<table:Column resizable="false" flexible="false">
//column template
</table:Column>
</table:columns>
</table:TreeTable>
但是如果我想以编程方式滚动到指定的行,我该如何实现呢?
【问题讨论】:
标签: javascript jquery scrollbar sapui5 treetable