如何在 Dojo DataGrid 中增大/减小字体大小

发布于 2024-07-29 01:31:24 字数 76 浏览 1 评论 0原文

如何增大/减小默认的 dojo 数据网格字体大小? 我应该在 CSS 中执行此操作,还是在扩展 DataGrid 类时可以设置一个属性?

How can I increase/decrease the default dojo datagrid font size? Should I do this in CSS or is there a property I can set when extending the DataGrid class?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜中书 2024-08-05 01:31:24

根据 Kitson 所说的,您可以执行以下操作:

<style type="text/css">
.dojoxGrid table {
   margin: 0;
}
.dojoxGrid th, tr {
   font-size: 8pt;
}
</style>

但正如 Kitson 提到的,Firebug 在发现您应该在样式表中使用什么类方面非常有用。 这是我使用该方法碰巧挑选出的两个类。

Building off what Kitson said, you can do something like this:

<style type="text/css">
.dojoxGrid table {
   margin: 0;
}
.dojoxGrid th, tr {
   font-size: 8pt;
}
</style>

But as Kitson mentioned, Firebug can be very useful in discovering what class you should use in your style sheet. These are two classes that I happened to pick out using that method.

梦纸 2024-08-05 01:31:24

您应该在 CSS 中设置它...始终使用 dojo/dijit/dojox 在 CSS 中设置视觉尺寸。

有时,您应该指定的 CSS 文档不清楚,因此我倾向于在渲染的页面上使用 FireBug 来识别已分配的元素和类,并以这种方式设置 CSS。 网格特别困难,因为即使他们做得很好,但由于每个浏览器的限制(IE6 是最大的痛苦),它在不同浏览器中的渲染效果确实略有不同。

我刚刚看了我的一个应用程序,看起来这个类相当简单,是 dojoxGrid

You should set it in CSS... Always set visual sizing in CSS with dojo/dijit/dojox.

Sometimes the documentation of the CSS you should be specifying isn't clear, so I tend to use FireBug on the rendered page to identify the element and the class that has been assigned and set the CSS that way. The grid is particularly difficult because even though they have done a good job with it, it does render slightly differently in different browsers because of the limitations of each browser (IE6 being the biggest pain).

I just looked at an app of mine at it seems the class is rather straightforward, being dojoxGrid

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文