如何为 ojlistview 捕获 "scroll" 事件
How to capture "scroll" event for ojlistview
他们的文档 (http://www.oracle.com/webfolder/technetwork/jet/jsdocs/oj.ojListView.html) 没有列出任何 "scroll" 事件。
如何捕获 "scroll" 事件,因为 Oracle-Jet 本身不支持它。在父 "div" 上捕获它是个好主意吗?
使用 jQuery 例如通过
$("#myList").scroll(function(){console.log("This is scroll");})
使用以下 HTML(相关的事情是监听器应该附加到由 rootAttributes 中传递的 id 属性标识的元素(ID 没有设置为 UL 本身,但是父元素UL
<ul data-id="c-list" data-bind="ojComponent: {component: 'ojListView',
data: dataSource,
selectionMode: 'none',
rootAttributes: {id: 'myList'} }">
</ul>
他们的文档 (http://www.oracle.com/webfolder/technetwork/jet/jsdocs/oj.ojListView.html) 没有列出任何 "scroll" 事件。
如何捕获 "scroll" 事件,因为 Oracle-Jet 本身不支持它。在父 "div" 上捕获它是个好主意吗?
使用 jQuery 例如通过
$("#myList").scroll(function(){console.log("This is scroll");})
使用以下 HTML(相关的事情是监听器应该附加到由 rootAttributes 中传递的 id 属性标识的元素(ID 没有设置为 UL 本身,但是父元素UL
<ul data-id="c-list" data-bind="ojComponent: {component: 'ojListView',
data: dataSource,
selectionMode: 'none',
rootAttributes: {id: 'myList'} }">
</ul>