Polymer paper-dialog-scrollable. scroll to the end

风格不统一 提交于 2019-12-13 02:03:21

问题


I use paper-dialog-scrollable.

 <paper-dialog-scrollable>
 </paper-dialog-scrollable>

How can I make this section to scroll to the end? I looked in the api and their is nothing that I can use.


回答1:


You can give the paper-dialog-scrollable some id (e.g mypaperscrollable) and

this.mypaperscrollable.$.scrollable.scrollTop = someValueHere

You could get the relative position of the last element inside your scrollable and use that as the value for scrollTop



来源:https://stackoverflow.com/questions/33235079/polymer-paper-dialog-scrollable-scroll-to-the-end

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!