Ext JS的 - 如何滚动到多行文本的底部(Ext JS - How to Scroll to b

2019-09-17 23:05发布

这是我下面的代码。 我如何可以滚动到文本区域的底部? 它必须是这样的

Ext.getCmp('output').setScrollPosition(Ext.getCmp('output').getScrollHeight());

这里是我的textarea的代码:

var myWin= new Ext.Window({
            height        :    340,
            title        :    'CHAT',
            modal        :    true,
            resizable    :    false,
            draggable    :    false,
            closable     :    false,
            width        :    477,
            layout       : 'absolute',
            bodyStyle    :    'padding : 10px',
            buttonAlign  : 'center',
            items        :    [
            {
                id           :    'output',
                xtype        :    'textarea',
                width        :    216,
                readOnly     :    true,
                autoScroll   :    true,
                height       :    234,
                x            :    10,
                y            :    10
            },
            item6,
            {
                id       :    'input',
                xtype    :    'textfield',
                width    :    443,
                y        :    249,
                x        :    10
            }]

...

Answer 1:

我不认为这是ExtJS的方法来滚动文本区域,但是你可以使用HTML textarea的属性:

var t = Ext.getCmp('output'),
   t1 = t.getEl().down('textarea');
t1.dom.scrollTop = 99999;

这里是它讨论的问题是: 动态滚动多行文本



Answer 2:

var d = Ext.getCmp('output').getEl().down('textarea').dom;
d.scrollTop = d.scrollHeight - d.offsetHeight;


文章来源: Ext JS - How to Scroll to bottom of Textarea