Ext JS 4:标题栏按钮在Internet Explorer 8中不完全可见

时间:2012-08-31 21:20:58

标签: extjs internet-explorer-8 tbar

默认的ExtJS配置不允许标题栏按钮在IE 8中正确显示。我没有在IE 9中测试过。我该如何解决这个问题?

BEFORE:

Internet Explorer 8:

enter image description here

Mozilla Firefox 15:

enter image description here

我尝试添加 tbar > style >第一个按钮的高度配置为“200px”。这只会让第一个按钮变大,但第二个和第三个按钮保持不变。即使我在所有3个按钮中设置相同的高度,按钮仍然部分隐藏在IE 8中。如果您知道如何设置tbar本身的样式,我可以尝试。我无法理解这一点。

AFTER:

tbar: [{
    text: 'Create HEAT Project',
    style: {
        border: 'solid',
        height: '200px'
    },

Internet Explorer 8:

enter image description here

Mozilla Firefox 15:

enter image description here

1 个答案:

答案 0 :(得分:0)

这个CSS在Internet Explorer中修复了它!

<style media="screen" type="text/css">

    .x-nlg .x-toolbar-default {
        background-image: url(../blank.png) !important;
    }

</style>