更改 CFGRID 上的样式
嘿 - cfgrid(和其他 cf ui)东西使用 EXT JS 库...有人知道如何更改 CF 网格表标题颜色吗?和/或边框颜色? - 在 HTML 网格中,而不是 Flash 或小程序...谢谢
hey - the cfgrid (and other cf ui) stuff makes use of the EXT JS lib... does eny one know how to change the CF grid table header colors? and or the border colors? - In the HTML grid NOT the flash or applet... thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
自定义外观和感觉:为 ColdFusion 8 Ajax UI 组件设置外观
http://www.rakshith.net/博客/?p=31
Customizing Look and Feel : Skin your ColdFusion 8 Ajax UI Components
http://www.rakshith.net/blog/?p=31
为 CF9 (Ext 2) 选择更多样式
http://dev.sencha .com/deploy/dev/examples/themes/index.html
More style to pick for CF9 (Ext 2)
http://dev.sencha.com/deploy/dev/examples/themes/index.html
这很简单。您可以按如下方式破解 CF 现有样式表。
.x-grid-hd-text {
字体系列:Calibri;
字体大小:15px;
字体粗细:粗体;
}
.x-grid-row div{
行高:16px;
字体系列:Calibri;
字体大小:13px;
}
.x-grid-col {
字体系列:Calibri;
字体大小:13px;
右边框:1px 实线#cccccc;
http://www.ppshein.net/ index.cfm/2010/9/16/change-font-in-cfgrid
It's simple. You can hack CF existing stylesheet as follow.
.x-grid-hd-text {
font-family:Calibri;
font-size:15px;
font-weight:bold;
}
.x-grid-row div{
line-height:16px;
font-family:Calibri;
font-size:13px;
}
.x-grid-col {
font-family:Calibri;
font-size:13px;
border-right: 1px solid #cccccc;
}
http://www.ppshein.net/index.cfm/2010/9/16/change-font-in-cfgrid