0

有谁知道如何在 IE8 中检查表单是最大化还是最小化。

拉吉

4

2 回答 2

0

在此处浏览他们的文档:http: //docs.sencha.com/ext-js/3-4/# !/api

您可以使用 window.screen.width 和 window.screen.height 来获取正在使用的屏幕的尺寸。

然后您可以使用 getPosition() 并确保它位于 0,0 并使用 getHeight() 和 getWidth() 并确保它们与屏幕尺寸匹配。

于 2012-06-07T04:51:39.110 回答
0

它通过使用以下代码解决:

var S = this.tabpanelFormation.getPosition();
    if (Ext.isIE8 && S[0] == 751) {
            this.tabpanelFormation.setPagePosition(749,370,true);
            this.tabpanelFormation.setHeight(230);
            this.tabpanelFormation.setWidth(350);
    }

如果它最大化,那么 S[0] = 751。通过这个我们可以找到 whet

于 2012-06-07T12:45:31.717 回答