gpt4 book ai didi

javascript - IE 6 中 Ext.Panel bbar 的宽度问题

转载 作者:行者123 更新时间:2023-11-30 18:59:35 24 4
gpt4 key购买 nike

我刚刚在使用 ExtJS 框架的 IE6 中遇到显示故障。 - 希望有人能指出我正确的方向。

在以下示例中,面板的 bbar 在 IE6 中显示为比它附加到的面板窄 2ems(左对齐),而在 Firefox 中它显示为与面板相同的宽度。

谁能建议如何解决这个问题?

我似乎可以通过指定以 em 为单位的面板宽度或以像素为单位的填充来解决这个问题,但我认为它应该会像我下面的那样工作。

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" href="ext/resources/css/ext-all.css"/>
<script type="text/javascript" src="ext/ext-base.js"></script>
<script type="text/javascript" src="ext/ext-all-debug.js"></script>
<script type="text/javascript">

Ext.onReady(function(){
var main = new Ext.Panel({
renderTo: 'content',
bodyStyle: 'padding: 1em;',
width: 500,
html: "Alignment issue in IE - The bbar's width is 2ems less than the main panel in IE6.",
bbar: [
"->",
{id: "continue", text: 'Continue'}
]
});
});

</script>
</head>
<body>
<div id="content"></div>
</body>
</html>

最佳答案

问题来自自定义 bodyStyle 填充。它使面板内容变大,但不会增大工具栏。

一种可能的解决方案是进一步嵌套一个 Ext 面板,例如:

    var main = new Ext.Panel({
renderTo: 'content',
width: 500,
items: {
bodyStyle: 'padding: 1em;',
border: false,
html: "Now alignment is fine."
},
bbar: [
"->",
{id: "continue", text: 'Continue'}
]
});

需要 border: false 来避免双边框。

关于javascript - IE 6 中 Ext.Panel bbar 的宽度问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/90181/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com