如何在 Flex4 运行时将项目添加到数据网格?

发布于 2024-11-25 02:04:50 字数 123 浏览 1 评论 0原文

我的 UserInfromation 表单包含两个输入字段用户名、位置(城市)和一个作为性别的单选按钮以及两个添加和重置按钮。当我单击添加按钮时,数据将在运行时添加到数据网格中。 我无法重现我将如何做到这一点。 谁能帮我举个例子吗?

My UserInfromation form contains two input fields username,location(city) and one radio button as gender and two buttons add and reset.when I click on add button that data will be added in datagrid at runtime.
I am unable to reproduce how will i do this.
can anyone help me on this with example?

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

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

发布评论

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

评论(1

无法回应 2024-12-02 02:04:50

这是一个示例应用程序(带有代码):

<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009" 
                       xmlns:s="library://ns.adobe.com/flex/spark" 
                       xmlns:mx="library://ns.adobe.com/flex/mx">
    <s:layout>
        <s:VerticalLayout/>
    </s:layout>

    <fx:Script>
        <![CDATA[
            import mx.collections.ArrayCollection;

            private var ac:ArrayCollection = new ArrayCollection();

            protected function addBtn_clickHandler(event:MouseEvent):void
            {
                var obj:Object = new Object();
                obj.userName = userNameTI.text;
                obj.location = locationTI.text;
                ac.addItem(obj);
            }
        ]]>
    </fx:Script>

    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <mx:Form width="100%">
        <mx:FormItem label="UserName:">
            <s:TextInput id="userNameTI"/>
        </mx:FormItem>
        <mx:FormItem label="Location:">
            <s:TextInput id="locationTI"/>
        </mx:FormItem>
    </mx:Form>
    <s:Button id="addBtn" label="Add" click="addBtn_clickHandler(event)"/>
    <mx:DataGrid id="dg" width="100%" dataProvider="{ac}"/>
</s:WindowedApplication>

有几件事留给您作为练习:)

Here is a sample app (with code):

<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009" 
                       xmlns:s="library://ns.adobe.com/flex/spark" 
                       xmlns:mx="library://ns.adobe.com/flex/mx">
    <s:layout>
        <s:VerticalLayout/>
    </s:layout>

    <fx:Script>
        <![CDATA[
            import mx.collections.ArrayCollection;

            private var ac:ArrayCollection = new ArrayCollection();

            protected function addBtn_clickHandler(event:MouseEvent):void
            {
                var obj:Object = new Object();
                obj.userName = userNameTI.text;
                obj.location = locationTI.text;
                ac.addItem(obj);
            }
        ]]>
    </fx:Script>

    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <mx:Form width="100%">
        <mx:FormItem label="UserName:">
            <s:TextInput id="userNameTI"/>
        </mx:FormItem>
        <mx:FormItem label="Location:">
            <s:TextInput id="locationTI"/>
        </mx:FormItem>
    </mx:Form>
    <s:Button id="addBtn" label="Add" click="addBtn_clickHandler(event)"/>
    <mx:DataGrid id="dg" width="100%" dataProvider="{ac}"/>
</s:WindowedApplication>

Couple of things are left for you as an exercise :)

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