re: [flexcoders] Still more problems with DataGrid

2009-05-21 Thread j...@cfwebtools.com
Are you using generic Objects in the ArrayCollection or do you have VOs created for your data? I've had weird things happen when using generic objects but using VOs tends to make things run way cleaner. -- Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154

re: [flexcoders] TileList dataprovider change bug?

2009-05-05 Thread j...@cfwebtools.com
Instead of switching arraycollections, leave the arraycollection alone and alter the arraycollection.source (Array). I've had weird things happen with binding to an arraycollection and just altering the source array fixed the issue. -- Jake Churchill CF Webtools 11204 Davenport, Ste. 100

re: [flexcoders] Masked Text Input

2009-04-13 Thread j...@cfwebtools.com
try setting restrict = null -- Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From: markgoldin_2000 markgoldin_2...@yahoo.com Sent: Monday, April 13, 2009 4:07 PM To:

re: [flexcoders] Re: Masked Text Input

2009-04-13 Thread j...@cfwebtools.com
You can use a simple handler of a keyboard event to test the length and only allow the input if it is .length = 5. -- Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From:

re: [flexcoders] Problem drag and drop

2009-04-10 Thread j...@cfwebtools.com
I'm not 100% sure about this but I just ran into an issue where I wanted to set up all my DragManager.acceptDragDrop(UIComponent) in an init function but it refused to work. DragManager only accepted that once something was actually being dragged so the same might be true for your