最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Ext Window at the bottom right - Stack Overflow

programmeradmin1浏览0评论

I want to make a small status bar at the bottom right of the screen. But extjs sets the values of ​​"top" and "left", and The result is stretched in the center window.

var swindow = new Ext.Window({
        width:100,
        style:'position:fixed; right:0;bottom:0;',
        baseCls:'lk-sysstate-spanel',
        shadow: false,
        closable:false,
        hideBorder: false,
        plain: true,
        items:[
            historyPanel,
            smallPanel
        ]
    });

css result in a browser

element.style {
    bottom: 0;
    display: block;
    left: 675px;
    position: fixed;
    right: 0;
    top: -5000px;
    visibility: visible;
    width: 98px;
    z-index: 9003;
}

Use ExtJs 3.4

I want to make a small status bar at the bottom right of the screen. But extjs sets the values of ​​"top" and "left", and The result is stretched in the center window.

var swindow = new Ext.Window({
        width:100,
        style:'position:fixed; right:0;bottom:0;',
        baseCls:'lk-sysstate-spanel',
        shadow: false,
        closable:false,
        hideBorder: false,
        plain: true,
        items:[
            historyPanel,
            smallPanel
        ]
    });

css result in a browser

element.style {
    bottom: 0;
    display: block;
    left: 675px;
    position: fixed;
    right: 0;
    top: -5000px;
    visibility: visible;
    width: 98px;
    z-index: 9003;
}

Use ExtJs 3.4

Share Improve this question edited Oct 25, 2013 at 9:58 calculon asked Oct 25, 2013 at 5:39 calculoncalculon 1252 silver badges14 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 4

You can add listener to window and remove left/top styles. Example:

var swindow = new Ext.Window({
    [...]

    listeners: {
        show: function() {
            this.el.setStyle('left', '');
            this.el.setStyle('top', '');
        }
    }
});

Working sample: http://jsfiddle/dnpTt/4/

Test in ExtJS 5.0.1

var w = window.innerWidth;
var h = window.innerHeight;

var swindow = new Ext.Window({
    [...]

    listeners: {
        show: function() {
            this.setX(w -this.getWidth());
            this.setY(h -this.getHeight());
        }
    }
});
发布评论

评论列表(0)

  1. 暂无评论