jqGrid - 列的标题文本未正确显示
我有一个固定宽度为 445px 的 jqGrid。在所有版本的 IE(v6、v7、v8 和 v9) 中,HeaderText 无法正常显示。在其他浏览器中它运行良好。 这个问题有解决办法吗?
I have a jqGrid with fixed width of 445px. In all Version of IE (v6,v7,v8 and v9), HeaderText is not displayed properly. In other browsers it is working well. Any solution for this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议您验证 HTML 文件是否以
开头:(
或
取决于您使用的 HTML 或 XHTML 方言)。另外,我建议您验证 IE 的配置是否已激活 兼容模式。如果使用兼容模式,可以通过
在 HTML 页面的
开头添加来解决问题。我将以上行包含在所有生产页面中。
I recommend you to verify that the HTML file starts with
<!DOCTYPE html ...
: (<!DOCTYPE html>
or<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
depend on the HTML or XHTML dialect which you use). Additionally I recommend you to verify whether the configuration of IE has activate the compatibility mode. If the compatibility mode are used the problem can be solved by includingat the beginning of the
<head>
of the HTML page. I include the above line in all productive pages.嗯,这是一个与文档类型相关的问题。由于我正在使用组件并且没有页面文档类型的句柄,因此我尝试找到解决方法。现在它对我来说运作良好..
Well, it was a Doc type related issue. As I'm working with a component and do not have handle on page doc type so I tried to find a workaround. Now it is working well for me..