问题标签 [cfgrid]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
coldfusion - cfgrid boolean column as Yes/No
I have a boolean type column in an html cfgrid. The data is stored in the database as 1/0 and is returned from CF as such. I want the user to see Yes/No instead of 1/0. I tried QuerySetCell, and couldn't get it to work.
The form is editable, when you double click the cell, the checkboxes show and it updates as it should. The only issue is the display.
Thanks in advance...
coldfusion - cfgrid 和 cfajaximport 鼠标悬停
我有以下内容:
摘自 Raymond Camden 的博客。我需要以某种方式将鼠标悬停事件添加到产品列以显示产品详细信息。(如成本)。
有关如何实施此事件的任何帮助?
coldfusion - 关于coldfusion在cfgrid中显示查询结果的问题
我有一个coldfusion cfc 和一些方法。MethodA 将返回一个 cfquery 对象。现在我使用 cfajaxproxy 调用 MethodA 并在 cfm 页面中获取查询结果。这个cfm 页面已经有一个cfgrid。现在我的问题是如何在已经显示数据的网格中显示从 MethodA 获得的查询结果?
coldfusion - 如何在 cfgrid 单元格中为空白行禁用 href 链接?
我有以下cfgrid:
由于页面大小为 10,如果网格中的行数少于 10,我将有一些空白行。对于那些空白行,我将使用“-”符号代替通常的数据,并且 hrefkey 将为 null 而不是通常的 link_id。有没有办法禁用空白行的href?或者如果有办法用javascript捕获空值?
coldfusion - 基于 Flash 的 CFGRID 能否在单元格中呈现基本 HTML?
(我对 Flex 和 CF 都非常陌生——更像是一个 .NET/ExtJS 人,所以我是一只出水的鸭子。)
我正在调整别人的 CFGRID 代码。它使用 Flash 格式——HTML 不是一个选项,因为它需要围绕网格重新设计整个界面。
我想放在网格中的数据有一些非常简单的 HTML 元素<sub>
——、、<sup>
和 HTML 实体,如°
. 我可以想象<i>
或<b>
将来可能会在那里。
如何告诉特定的 CFGRIDCOLUMN 将其内容呈现为 HTML?
我听说这是可能的,但谷歌今晚不是我的朋友。
继续使用 CF7 几个星期,所以如果有任何 CF8/CF9 特定的解决方案,也请告诉我,但这无助于我的迫切需要。
coldfusion - CFGRID - 在多个列上替换数据存储或过滤器
冷融合 8
我有一个基于查询的 cfgrid。它没有绑定到 cfc 函数,因为我想要一个滚动网格,而不是分页网格(如果使用 BIND,则必须提供页码和页面大小)。我可以弄清楚如何使用它来过滤一列下面的代码,但我真的需要过滤三列......
grid.getDataSource().filter("OT_MILESTONE",t1);
向过滤器字符串添加更多内容并不能解决问题......它会忽略第一对值以外的任何内容......
所以..我想如果我调用一个传递三个值并将查询结果返回给我的函数,我可以替换网格的数据存储..但我无法弄清楚让它替换的语法。
查询的返回变量具有以下格式:
有任何想法吗?
datagrid - How to create Master/Detail view with two datagrids in ColdFusion
In Coldfusion, I have Master and Detail data that I need to display in two separate cfgrids; like the typical Customers/Orders scenario. My cfgrids are bound to cfc functions which populate the cfgrids. In my current dataset, only one Customer has Orders and when I click on this record in the Master datagrid the Detail datagrid displays the related records. But when I click on a record in the Master datagrid that has no related detail records, the Detail datagrid does not refresh but maintains display of the previous data. Also the search icon within the datagrid's control panel indicates it is searching for values rather than displaying the Refresh icon.
Can you please show me how to establish Master and Detail cfgrids where I can see Orders of Customers as I navigate through the Master datagrid?
Any and all help will be greatly appreciated!
Maklar
forms - 如何使用 CFGRID 信息更新数据库?
我正在使用 cfgrid 并且我不确定如何制作它,因此当有人在它保存的条目中编辑数据时。
我知道有cfgridupdate
标签,但我不确定放在哪里。它是否像常规表单一样提交?
我知道这是一个简单的问题,但我找不到不使用网络绑定的答案。(我不能使用......绑定它)
使用 Coldfusion 8。:) (注意:由于 IT 部门的原因,绑定不起作用 -_- )
jquery - 将 CFGRID 与 JQuery 一起使用
我在使用 CFGRID 和 JQuery 时遇到问题。以下是使用 CFARTGALLERY 数据库的示例代码:
网格测试.cfm
它有一个简单的 cfselect 控件来选择艺术家的名字,当点击时,cfgrid 会显示艺术作品的名字。
这是 CFC (gridtest.cfc):
到目前为止,一切都很好。但是,如果我使用使用 JQuery 的加载功能的包装页面,就像这样(gridtestmain.cfm):
cfgrid 消失了,只有一个边界框。在 IE 中它会报告“Ext.EventObject 为空或不是对象”的错误。搜索网络表明 Ext 库被多次加载导致问题,但我看不到它被多次加载的位置。
这是 JQuery 的限制吗?还是我做错了?任何建议都非常感谢。
coldfusion - CFGRID 与 CF 9.0.1
我有一个在 CF 9.0 中运行良好的 CFgrid,但现在我们已经升级到 9.0.1,提交表单后没有任何内容出现(form.#GridName#.#Column1Name#)。我编写了一些测试代码(如下),我在 9.0.1 服务器上尝试过,它在表单中提供了空字符串,就像在 9.0 上一样,它包含所选行的所有信息。关于问题是什么以及任何解决方法的任何想法?
提前喝彩