在 Flex 中动态向数据网格添加列

发布于 2024-12-05 18:32:53 字数 615 浏览 0 评论 0原文

我正在尝试制作一个数据网格,它将根据某些条件动态地向其中添加列。 现在,我可以添加列,但我希望新添加的列具有使用 itemRenderer 的按钮。

但我无法实现这一目标。在第 1 行出现此错误

描述资源路径位置类型 1067:隐式强制 mx.controls:Button 类型的值指向不相关的类型 mx.core:IFactory。 Demo.mxml /Demo/src 第 14 行 Flex 问题

有人可以帮忙吗?

这是一个代码片段:

private function addDataGridColumn(dataField:String):void {
            var dgc:DataGridColumn = new DataGridColumn();
            dgc.itemRenderer = button1;    // Line 1 
            var cols:Array = dataGrid.columns;
            cols.push(dgc);
            dataGrid.columns = cols;
        }

I am trying to make a datagrid, that will dynamically add columns to it based on some condition.
Now, I am able to add the columns, but I want the newly added column to have button using itemRenderer.

I am unable to achieve this though. Getting this error on line 1

Description Resource Path Location Type 1067: Implicit coercion of a
value of type mx.controls:Button to an unrelated type
mx.core:IFactory. Demo.mxml /Demo/src line 14 Flex Problem

Can anyone help ?

Here's a code snippet :

private function addDataGridColumn(dataField:String):void {
            var dgc:DataGridColumn = new DataGridColumn();
            dgc.itemRenderer = button1;    // Line 1 
            var cols:Array = dataGrid.columns;
            cols.push(dgc);
            dataGrid.columns = cols;
        }

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

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

发布评论

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

评论(1

眼藏柔 2024-12-12 18:32:53

itemRendereritemEditor 属性的类型为 IFactory。当您在 MXML 中设置这些属性时,MXML 编译器会自动将属性值转换为 ClassFactory 类型,即实现 IFactory 接口的类。

当您在 ActionScript 中设置这些属性时,必须将属性值显式转换为 ClassFactory

您可能正在寻找此功能,将按钮添加到新添加列的所有行。

private function addDataGridColumn(dataField:String):void {
                var dgc:DataGridColumn = new DataGridColumn();
                dgc.itemRenderer = new ClassFactory(Button);
                var cols:Array = dataGrid.columns;
                cols.push(dgc);
                dataGrid.columns = cols;
            }

The itemRenderer and itemEditor properties are of type IFactory. When you set these properties in MXML, the MXML compiler automatically casts the property value to the type ClassFactory, a class that implements the IFactory interface.

When you set these properties in ActionScript, you must explicitly cast the property value to ClassFactory

You might be looking for this, adds buttons to all rows of newly added column.

private function addDataGridColumn(dataField:String):void {
                var dgc:DataGridColumn = new DataGridColumn();
                dgc.itemRenderer = new ClassFactory(Button);
                var cols:Array = dataGrid.columns;
                cols.push(dgc);
                dataGrid.columns = cols;
            }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文