RE: Databinding with SparkGrid and locked headers/columns seems broken

2015-01-09 Thread Kessler CTR Mark J
Are you using an Array or ArrayCollection? -Mark -Original Message- From: DavidM [mailto:dmos...@gmail.com] Sent: Thursday, January 08, 2015 9:45 PM To: users@flex.apache.org Subject: Re: Databinding with SparkGrid and locked headers/columns seems broken Replaced Spark Datagrid with Mx D

Re: Databinding with SparkGrid and locked headers/columns seems broken

2015-01-09 Thread pkumar.flex
did you use [Bindable] in your dataprovider class defination? if now please use it. otherwise ObjectProxy class. On Fri, Jan 9, 2015 at 7:35 AM, DavidM [via Apache Flex Users] < ml-node+s246n936...@n4.nabble.com> wrote: > Seeing very strange behavior with Spark Datagrid when adding / removing

Re: Databinding with SparkGrid and locked headers/columns seems broken

2015-01-09 Thread Alex Harui
The Spark locked rows and columns code is new-ish so I’m not surprised there are bugs. Please file bugs with simple test cases, and/or offer patches if possible. MX DG was pretty aggressive about refreshing rows. Spark DG may be relying on change events more (or could just have bugs) so make sur

Re: Flex skin implementing material design out there?

2015-01-09 Thread quick6black
I started a repository on github for material design skins replicating Android 5. Here is the link https://github.com/quick6black/flex-Android-Material-Skins -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Flex-skin-implementing-material-design-out-there-tp895

Re: Databinding with SparkGrid and locked headers/columns seems broken

2015-01-09 Thread DavidM
@Prashast: yes I used [Bindable], and, as I pointed out, the same code works fine with MX Datagrid. :) BTW, both the ArrayCollection and the array items use [Bindable] @Mark: yes I used ArrayCollection (Array would not have worked with either Spark or MX, and it does work with MX DataGrid) :) @

Re: Flex skin implementing material design out there?

2015-01-09 Thread OmPrakash Muppirala
On Jan 9, 2015 9:47 PM, "quick6black" wrote: > > I started a repository on github for material design skins replicating > Android 5. Here is the link > > https://github.com/quick6black/flex-Android-Material-Skins > Great! Can you create a branch in the official Flex repo instead? Thanks, Om > >

RE: Databinding with SparkGrid and locked headers/columns seems broken

2015-01-09 Thread Kessler CTR Mark J
David, When you're ready you can add issues to our JIRA [1].Just attach a small test case or put it in the comments. [1] https://issues.apache.org/jira/browse/FLEX -Mark -Original Message- From: DavidM [mailto:dmos...@gmail.com] Sent: Friday, January 09, 2015 11:33 AM To: users@

Re: Best way to blink a Spark Datagrid cell

2015-01-09 Thread jude
You have to start using the data setter to check if the row is the selected row and column so that you can turn it on and so you can turn it off for all other rows. The data setter is called on numerous events including scrolling. Here is some pseudo code: override public function set dat

RE: Databinding with SparkGrid and locked headers/columns seems broken

2015-01-09 Thread DavidM
Thanks Mark, will do once I've got BindingManager to work, just to be sure that it's not a databinding issue rather than a grid rendering issue. David -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Databinding-with-SparkGrid-and-locked-headers-columns-seems-br