CheckBox Checked event : CheckBox « Components « Flex






CheckBox Checked event

CheckBox Checked event
       
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"
  backgroundColor="#eeeeee">
  
  <mx:Script>
    
      import mx.controls.Alert;
      private function checkSelected():void
      {
        if (myCheckBox.selected)
        {
          Alert.show("You selected the CheckBox");
        }
        else
        {
          Alert.show("You didn't select the CheckBox");
        }
      }
  
  </mx:Script>
  
  <mx:CheckBox id="myCheckBox" label="Option selected"/>
  <mx:Button label="Check status" click="checkSelected()"/>
</mx:Application>

   
    
    
    
    
    
    
  








Related examples in the same category

1.Use CheckBox click eventUse CheckBox click event
2.Set checkbox menu item checkedSet checkbox menu item checked
3.Use to define a CheckBox controlUse <mx:CheckBox> to define a CheckBox control
4.Use selected property to create a checked checkboxUse selected property to create a checked checkbox
5.Use addChildAt() to add the CheckBox control to VBoxUse addChildAt() to add the CheckBox control to VBox
6.A form with a CheckBox controlA form with a CheckBox control
7.CheckBox Item RendererCheckBox Item Renderer
8.Register function to a Button control and CheckBox controlRegister function to a Button control and CheckBox control
9.Use CheckBox to control Button enabled stateUse CheckBox to control Button enabled state
10.CheckBox renderer for DataGridColumnCheckBox renderer for DataGridColumn
11.Use setChildIndex() to move a CheckBox control down the display listUse setChildIndex() to move a CheckBox control down the display list
12.Using the selected property to generate a checkbox that is checked by defaultUsing the selected property to generate a checkbox that is checked by default
13.Image is not visible until the user selects the checkboxImage is not visible until the user selects the checkbox
14.Inline DataGrid CheckBox EditorInline DataGrid CheckBox Editor
15.Inline DataGrid CheckBox Editor With OffsetsInline DataGrid CheckBox Editor With Offsets
16.CheckBox control named myCB appears when you change to any view state in GroupCheckBox control named myCB appears when you change to any view state in Group
17.ChekcBox with LabelChekcBox with Label