aharui commented on issue #676: CheckBox is not shown as ADG Column 
URL: https://github.com/apache/royale-asjs/issues/676#issuecomment-574988185
 
 
   Other people are also using custom item renderers based on emulation 
components, so the current emulation needs some refactoring.
   
   As a temporary workaround, you can use the default item renderer and use a 
custom labelFunction that returns a checked box.  This worked in my tests:
   
   ```
               private function oddsEvens(value:Object):String
               {
                   var checked:Boolean = <some logic based on value's 
properties>;
                   return (checked) ? "☑" : "☐";
               }
   ```

----------------------------------------------------------------
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:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to