[flexcoders] Re: Overriding text display in DataGridItemRenderer

2008-10-09 Thread karlgold
the display in the set data() override. Well, rather in the the commitProperties function, after invalidating properties in set data (). Tracy --- In flexcoders@yahoogroups.com, karlgold karlgold@ wrote: I'm trying to implement a custom item renderer in ActionScript that parses an ISO

[flexcoders] Overriding text display in DataGridItemRenderer

2008-09-27 Thread karlgold
I'm trying to implement a custom item renderer in ActionScript that parses an ISO date string (which is the way the date is always represented in my data feed) and formats it for display in a DataGrid column. I have tried multiple variations on this: package com.mycompany.components { import

[flexcoders] Re: How to measure a Menu before calling show()?

2007-02-10 Thread karlgold
, see if my Scrollable Menu component might fit your needs: http://dougmccune.com/blog/2007/01/26/even-better-scrollable-menus- for-flex/ -Doug karlgold wrote: I want to display a popup menu when the user clicks in a certain spot in application: private function showContextMenu

[flexcoders] How to measure a Menu before calling show()?

2007-02-05 Thread karlgold
I want to display a popup menu when the user clicks in a certain spot in application: private function showContextMenu(e:MouseEvent):void { var menuData:Array = new Array(); // populate menuData var itemMenu:Menu = Menu.createMenu(null, menuData, true); itemMenu.show(e.stageX,