Expand my Community achievements bar.

How do I refresh my textInput fields from the DB?

Avatar

Level 2

Here is how I load data into a form (it's a component, loaded and displayed as a popup):

            protected function panel1_updateCompleteHandler(event:FlexEvent):void
            {
                rec_obj_guid = parentApplication.grdSBJs.selectedItem.OBJ_GUID;
                getSBJResult.token = baa_data_svc.getSBJ(rec_obj_guid);
            }

Commit button:


            protected function btnCommit_clickHandler(event:MouseEvent):void
            {
                baa_data_svc.updt_SBJ(bAA_SBJ);   
            }

I have an Undo button that simply needs to discard the changes made by the user, and repopulate TextInputs from the DB.  What is the proper way to do this?

            protected function btnUndo_clickHandler(event:MouseEvent):void
            {
               // WHAT GOES HERE ?
            }

------------------- note ----------------------

Doing another:

                getSBJResult.token = baa_data_svc.getSBJ(rec_obj_guid);

doesn't throw an error, but the data in the TextInputs doesn't get refreshed back to the unedited state.

Also here are the variable declarations.  Are they OK?

    <fx:Script>
        <![CDATA[
           ...

            private var rec_obj_guid: String;
            [Bindable]
            private var data_chngd: Boolean = false;

0 Replies