Re: Show/hide checkbox in grid

2015-07-03 Thread Alex Harui
Yes, wrapping usually involves some adjusting. You weren’t using listData earlier, and listData won’t be available unless your renderer implements IDropInListItemRenderer. The selected property still exists on the checkbox, but you have to reference it by id. -Alex On 7/3/15, 3:21 AM, mark

DateField timezone problem?

2015-07-03 Thread Marcus Fritze
Hi guys, I need a little help? Maybe, it’s a error in Flex DateField or I am doing something wrong. I have a date from a timestamp: „myDateSun Jul 5 00:00:00 GMT+0200 2015 (@15e28c5f1) date5 dateUTC 4 day

Re: methods for web app to read text file on client's computer?

2015-07-03 Thread modjklist
I've been looking into fileReference, for example: fileReference= new FileReference(); fileReference.addEventListener(Event.SELECT, onFileSelected); var txtTypeFilter:FileFilter = new FileFilter( Text Files (*.txt) , *.txt ); fileReference.browse([txtTypeFilter]); Is it

Re: methods for web app to read text file on client's computer?

2015-07-03 Thread OmPrakash Muppirala
You can load and read a file using the Filereference class: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/FileReference.html Once the contents of the file are available, there is a pretty good method to read a CSV file described in this stack overflow thread:

methods for web app to read text file on client's computer?

2015-07-03 Thread modjklist
Looking for recommendations to read a text file in Flex web app (not AIR). Does a web app even have permission to read a text file located on the client's computer? Text file is comma-separated data arranged in columns. The total number of lines isn't known ahead of time. Ideally I'd like

RE: how to run Flex app programmatically?

2015-07-03 Thread Jason Taylor
I would look at RiaTest, it has a slew of tools for automating Flex. -Original Message- From: modjkl...@comcast.net [mailto:modjkl...@comcast.net] Sent: Thursday, July 02, 2015 6:33 AM To: users, apache Subject: how to run Flex app programmatically? Regarding Flex for desktop web app,