ColdFusion:根据条件突出显示 CFGrid 中的行?
我正在 Coldfusion 中构建一个应用程序,基本上它是一个跟踪会员资格何时到期的模块。我正在建立所有成员的索引,我想使用 cfgrid。
有没有办法指定在会员资格到期后 x 天内该行突出显示?
谢谢!
I'm building an app in Coldfusion, basically it's a module that tracks when memberships expire. I'm building an index of all members, I am wanting to use cfgrid.
Is there a way to specificy that within x days of the membership expiring for the row to get highlighted?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为此,您可能需要自己编写一些 JavaScript。首先通过 ColdFusion.Grid.getGridObject 获取 ExtJS 对象,然后查看 ExtJS 文档 (http://dev.sencha.com/deploy/dev/docs/) 以了解可以做什么。
另一种选择是在 ColdFusion 中进行计算并向网格添加另一列。
To do this you would probably have to write some JavaScript yourself. First get the ExtJS object via ColdFusion.Grid.getGridObject then look at the ExtJS docs (http://dev.sencha.com/deploy/dev/docs/) to see what can be done.
Another option would be to do the calculation in ColdFusion and add another column to the grid.
是的
Yes