[flexcoders] (unknown)

2012-07-04 Thread e baggg
http://comqueen.com/images/cpk3qijb.php 7/4/2012 5:17:22 AM

[flexcoders] Re: Is there a simple Cairngorm 2 walkthrough out there?

2006-08-31 Thread e baggg
http://weblogs.macromedia.com/auhlmann/archives/2006/07/cairngorm_2_for_1.cfm Get your own web address for just $1.99/1st yr. We'll help. Yahoo! Small Business. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

[flexcoders] Re: Cairngorm / Hibernate Best Practices

2006-08-30 Thread e baggg
Brennan, I haven't seen the word "Hithero" used since I was forced to read Shakespeare back in high school. Way to bring it back! Anyway, Adobe has provided Hibernate support via the Hibernate

[flexcoders] Re: how to call a method in a custom mxml component

2006-08-30 Thread e baggg
You can call the method just about anyway imaginable.mx:Button label="Fire event" click="init()"/My advice would be to look at the API. If you put your cursor on a mxml component, like in the above example, put the cursor on any of the letters in "Button" and hot "SHift + F2". This will take

Re: [flexcoders] Passing data from JSP to Flex

2006-08-28 Thread e baggg
Anas- Please see the HTTPService class. This is the code from the API docs. The "url" attribute would the URL link to your server side java Delegate. If you are using FDS (Flex Data Services), then you can actually return your java domain objects, otherwise, you'll have to return XML or

Re: [flexcoders] Re: How to refresh a tree

2006-08-23 Thread e baggg
I too have had problems with XML nodes in tree. One thing that eliminated a lot of the issues was reassigning the dataProvider of the tree explictly (right after you update the node.so...[Bindable]private var xmlN : XML private function updateTreeDataProvider : void {//code that updates

Re: [flexcoders] Dynamic ViewStack (Cairngorm)

2006-08-16 Thread e baggg
Kenny, I think States would be a better fit for what you are trying to do. Regardless, you could have the viewstack selected property index set to a bindable value so, selectedIndex="{model.accessLevel}"And in your ModelLocator (Cairngorm [Bindable] singleton)accessLevel :

Re: [flexcoders] DataGridColumn custom itemRenderers

2006-08-16 Thread e baggg
Barry, An itemRenderer can be a mxml component.It needs to be the fully-qualified class name. ie no namespaces here.It should be like: mx:DataGridColumnheaderText="Search" dataField=""itemRenderer="view.customcontrol.AcademicSearch"/ Get your email and more, right on the new Yahoo.com

Re: [flexcoders] Calling functions from an itemRenderer

2006-08-16 Thread e baggg
Rick- Whenever you declare a method such as click="someMethod()"...you cannot have double quotes between the wrapping double-quotes of the click. The compiler always assumes the second quote is the end of the method name. If you changed your code to -- click="callMethod()" and then above it