Re: [flexcoders] DataGrid.labelFunction

2005-05-17 Thread JesterXL
This works, but my code in my main app doesn't work... imagine that alskdjflajdlksfjl kasfdlaksj dfliasjdlifj o asdlfj ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; initialize=initApp(); mx:Script ![CDATA[ function initApp() {

RE: [flexcoders] DataGrid.labelFunction

2005-05-17 Thread Jose Lora
Maybe the signature of your function is not the right one, try using : private function onMyLabelFunction (item , columnName) : String { From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Tuesday, May 17, 2005 3:20 PM To: Flexcoders

Re: [flexcoders] DataGrid.labelFunction

2005-05-17 Thread JesterXL
Can someone explain why this doesn't work with the labelFunction? ?xml version="1.0" encoding="utf-8"?mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml"mx:Script![CDATA[ import mx.utils.Delegate; function test(item, colName){return "cow";} function doStuff(){var d =

Re: [flexcoders] DataGrid.labelFunction

2005-05-17 Thread JesterXL
something horribly obvious. Anyone have a mx.controls.listclasses.SelectableRow.as file to send me for Flex so I can see? - Original Message - From: JesterXL To: flexcoders@yahoogroups.com Sent: Tuesday, May 17, 2005 4:57 PM Subject: Re: [flexcoders] DataGrid.labelFunction Can