NOTE: Latest NVIDIA Driver 378.49 breaks Java

2017-01-31 Thread Nemi
In my case I got errors while running Ant scripts in Flash Builder: "Java SE binary stopped working..." and another "Not responding..." window with error log files where you can see its related with nv*.dll file. I fixed it with reinstalling previous driver version. Related:

Re: FlexJS: Unable compile project using latest Nightly build

2017-01-31 Thread OK
Hi, I've just downloaded the FlexJS nightly and got a circular dependency error after compiling [1] Moreover the compilation of a simple single file took about 35 seconds using VSCode on Windows7. Do I something wrong? Thanks, Olaf [1] https://snag.gy/H5yGxV.jpg -- View this message in

Re: FlexJS: Unable compile project using latest Nightly build

2017-01-31 Thread Alex Harui
On 1/31/17, 10:50 AM, "PKumar" wrote: >Can i download the nightly build now? Yes, as far as I know... -Alex

Re: FlexJS: Unable compile project using latest Nightly build

2017-01-31 Thread PKumar
Can i download the nightly build now? - Regards, Prashant -- View this message in context: http://apache-flex-users.246.n4.nabble.com/FlexJS-Unable-compile-project-using-latest-Nightly-build-tp14368p14593.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: TextInput in a DataGrid

2017-01-31 Thread Kyle McKnight
I had thought that useVirtualLayout to false would stop it from re-using renderers. And when I set the text initially to an empty string "" then the text i entered would be registered and my totals would show up, but the text itself wouldn't show up until i pressed another key. It was jus tweird.

Re: TextInput in a DataGrid

2017-01-31 Thread Josh Tynjala
That sounds like the correct way to do it to me. I'm not sure that itemUpdated() should be required, but I haven't dealt with Flex item renderers in a while, so maybe there some quirk I've forgotten. Ultimately, you want to store any text or other data that is associated with a specific item in

Re: TextInput in a DataGrid

2017-01-31 Thread kamcknig
I solved it by binding the TextInput's text property to a property of the ItemRenderer's data Object and setting that data in a change handler on the TextInput and then calling dataProvider.itemUpdated(). I feel this is a bit hacky, so please, if anyone else has a way to do it, let me know? :)

Re: TextInput in a DataGrid

2017-01-31 Thread Kyle McKnight
Well apparently the text didn't show up in the email but it does on the forum sight. Not sure how this will show up but here it is via email.

TextInput in a DataGrid

2017-01-31 Thread kamcknig
Hey everyone, I'm using a spark DataGrid that has an inline ItemRenderer which has a TextInput inside of it. Whenever the data provider for the DataGrid changes the amount of ItemRenderers change based on the length of the dataProvider properly, but the TextInput's text doesnt empty back out.