pashminakazi commented on issue #740: CheckBox Selection doesn't effect on ADG 
Checkbox Column 
URL: https://github.com/apache/royale-asjs/issues/740#issuecomment-593253182
 
 
   In our Flex Application,ADG is set to editable=false and checkbox is set to 
enabled=false but on the selection of **Include in Plan** or **Print Footer**  
selected="{data.inclde == '0' ? false : true}" and its setting the Checkbox 
selection and a function Called on the change Event of **Include in Plan** or 
**Print Footer** checkbox
   ```
   protected function selectAll(event:Event):void
                        {
                                // TODO Auto-generated method stub
                                for(var i:int = 0; i<edgDP.length ; i++){
                                        edgDP[i].inclde = chkAll.selected? "1": 
"0";    
                                }
                                edgDP.refresh();
                                edgEntry.validateNow();
                        }
   
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to