如果我的 Flex 数据网格可编辑,如何使某些数据网格列不可编辑或只读

发布于 2024-09-27 09:57:06 字数 43 浏览 7 评论 0原文

如果我的 Flex 数据网格可编辑,如何使某些数据网格列不可编辑或只读?

How do i make some of my datagridcolumns non editable or readonly if my flex datagrid is editable?

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

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

发布评论

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

评论(2

月下客 2024-10-04 09:57:06

DataGridColumn 具有属性editable。只需将其设置为false即可。

请参阅 DataGridColumn。

下面是具有一个可编辑列的 DataGrid 的简单示例:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">

    <mx:DataGrid id="testGrid" editable="true">
        <mx:columns>
            <mx:DataGridColumn headerText="Column1" dataField="column1" editable="false" />
            <mx:DataGridColumn headerText="Column2" dataField="column2" />
        </mx:columns>
        <mx:dataProvider>
            <mx:ArrayCollection>
                <mx:Object>
                    <mx:column1>Some Value</mx:column1>
                    <mx:column2>Some Other Value</mx:column2>
                </mx:Object>
            </mx:ArrayCollection>
        </mx:dataProvider>
    </mx:DataGrid>
</mx:Application>

第一列不可编辑,第二列可以。

DataGridColumn has property editable. Just set it to false.

See the documentation for DataGridColumn.

Here is a quick example of a DataGrid with one editable column:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">

    <mx:DataGrid id="testGrid" editable="true">
        <mx:columns>
            <mx:DataGridColumn headerText="Column1" dataField="column1" editable="false" />
            <mx:DataGridColumn headerText="Column2" dataField="column2" />
        </mx:columns>
        <mx:dataProvider>
            <mx:ArrayCollection>
                <mx:Object>
                    <mx:column1>Some Value</mx:column1>
                    <mx:column2>Some Other Value</mx:column2>
                </mx:Object>
            </mx:ArrayCollection>
        </mx:dataProvider>
    </mx:DataGrid>
</mx:Application>

The first column is not editable, the second one is.

雨夜星沙 2024-10-04 09:57:06

设置属性 IsReadOnly=True

Set the property IsReadOnly=True

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