Re: ADG column dragging

2015-02-20 Thread mark goldin
Alex, are you saying it is an SDK problem? Should I try 4.14? On Fri, Feb 20, 2015 at 1:54 AM, Alex Harui wrote: > IIRC, it was some combination of Flex SDK parenting, so your workspace > search may not find it unless you have the SDK source in your workspace. > > -Alex > > On 2/19/15, 9:55 AM,

Re: Flex Developer Opportunity

2015-02-20 Thread Deepak MS
Hi Steve, Attaching my CV. Kindly let me know if my profile suits your requirements. Not sure, if candidates from outside can apply. However, let me know about it. Cheers! Deepak On Fri, Feb 20, 2015 at 12:49 AM, Steve Landrey wrote: > Hi, > > > > My name is Steve Landrey, and I’m a technical

Re: Flex Developer Opportunity

2015-02-20 Thread Deepak MS
Oops! Kindly ignore my previous email. I sent it to the group by mistake. Cheers!

Re: ADG column dragging

2015-02-20 Thread mark goldin
Should I fill out a bug then? On Fri, Feb 20, 2015 at 11:39 AM, Alex Harui wrote: > You can try 4.14, but I wouldn’t be too surprised if it occurs there too. > > -Alex > > On 2/20/15, 6:06 AM, "mark goldin" wrote: > > >Alex, are you saying it is an SDK problem? Should I try 4.14? > > > >On Fri,

Re: ADG column dragging

2015-02-20 Thread Alex Harui
You can try 4.14, but I wouldn’t be too surprised if it occurs there too. -Alex On 2/20/15, 6:06 AM, "mark goldin" wrote: >Alex, are you saying it is an SDK problem? Should I try 4.14? > >On Fri, Feb 20, 2015 at 1:54 AM, Alex Harui wrote: > >> IIRC, it was some combination of Flex SDK parentin

Re: ADG column dragging

2015-02-20 Thread Alex Harui
If you have a small reproducible test case, yes, if there isn’t already a bug filed. On 2/20/15, 9:42 AM, "mark goldin" wrote: >Should I fill out a bug then? > >On Fri, Feb 20, 2015 at 11:39 AM, Alex Harui wrote: > >> You can try 4.14, but I wouldn’t be too surprised if it occurs there >>too. >

Binding in ActionScript

2015-02-20 Thread mark goldin
I am trying to replicate mxml binding for datagrid: dataProvider="{_model.currentView}" with ActionScript: creationComplete="init()" init: BindingUtils.bindProperty(grid, "dataProvider", _model, "currentView"); override public function set dataProvider(value:Object):void { super.dataProvider

Re: Binding in ActionScript

2015-02-20 Thread jude
That event might be too late? But I'm guessing grid or model is null before then. Also, model may need to be bindable as well. Or you might need to call execute bindings. From the documentation: Notice in this example that you use the preinitialize event to define the data binding. This is necessa