如何在flex 3中创建和使用弹出窗口?

发布于 2024-11-25 06:53:58 字数 119 浏览 2 评论 0原文

我使用了数据网格和控制栏中的一个按钮。通过单击按钮,应用程序从基本状态进入编辑状态。 我的问题是如何使用弹出窗口来编辑数据网格的选定记录而不是更改状态。 请给我任何描述如何在 Flex 3 应用程序中使用弹出窗口的代码示例。

I have used a datagrid and one button in control bar. by clicking button the application goes edit state from base state.
My question is how can i use popup for editing selected record of datagrid instead of changing state.
please give me any example with code that describe how pop ups can be used in flex 3 application.

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

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

发布评论

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

评论(1

烟花肆意 2024-12-02 06:53:58

我得到了上述问题的答案。
首先,我们必须为名为 MyPopup 的弹出窗口创建自定义组件,

并在 application: 中

import components.popups.MyPopup;
public var pop:MyPopup;
public function Show_Pop():void
            {

             pop= PopUpManager.createPopUp(this,MyPopup,true)  as MyPopup;
             PopUpManager.centerPopUp(pop);

             }

调用函数:

<mx:Button  click="Show_Pop()" id="btn1" label="show Popup"/>

I got answer for above problem.
First we have to create custom component for popup named MyPopup

And in application:

import components.popups.MyPopup;
public var pop:MyPopup;
public function Show_Pop():void
            {

             pop= PopUpManager.createPopUp(this,MyPopup,true)  as MyPopup;
             PopUpManager.centerPopUp(pop);

             }

calling function:

<mx:Button  click="Show_Pop()" id="btn1" label="show Popup"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文