[flexcoders] List custom drawSelectionIndicator

2008-10-22 Thread j301c
I recently was looking at the flex application at http://www.mindomo.com/demo In particular, if you click the 'open' at the top left corner of the screen (an open folder icon), a window comes up with a datagrid. The datagrid has a custom gradient selection indicator and rollover indicator.

[flexcoders] Re: List custom drawSelectionIndicator

2008-10-22 Thread j301c
); g.lineStyle(1); g.drawRect(1, 1, w, height - 2); g.endFill(); indicator.x = x; indicator.y = y; } --- In flexcoders@yahoogroups.com, j301c [EMAIL PROTECTED] wrote: I recently

[flexcoders] Re: BlazeDS FlexSessionListener

2008-09-11 Thread j301c
PROTECTED] On Behalf Of j301c Sent: Wednesday, September 10, 2008 4:53 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] BlazeDS FlexSessionListener Has anyone had any success with using the FlexSessionListener with BlazeDS. My listener calls the sessionCreated method when the session

[flexcoders] BlazeDS FlexSessionListener

2008-09-10 Thread j301c
Has anyone had any success with using the FlexSessionListener with BlazeDS. My listener calls the sessionCreated method when the session starts, but the sessionDestroyed method is never called when the user closes the browser. Is this something only supported in Flex Data Services? Any tips

[flexcoders] Re: Question about Best Practices for Applications with many views using Cairngorm

2008-09-01 Thread j301c
I agree that states are probably a much better option than viewstacks because they are more dynamic. I probably will consider doing this as I move along for this reason. I guess I was just wondering if there was a better way than using constants in the modellocator to bind what state, or

[flexcoders] Question about Best Practices for Applications with many views using Cairngorm

2008-08-31 Thread j301c
I am developing an application using the cairngorm framework. The following is a descripton of how I have been using cairngorm according to what I have gleemed from the documentation and from my own usage. The framework suggests that you use ViewStacks in combination with constants and

[flexcoders] WebService call

2008-01-06 Thread j301c
I have a webservice running on a local glassfish server. I can access the url from the browser and retreive the wsdl xml manually. When I run the swf from the webpage nothing happens (no responce or error), when I run swf on my local system it gives me this error [RPC Fault

[flexcoders] Smooth Scrolling DataGrid

2007-12-07 Thread j301c
I would like to devote this post to thoughts and ideas of how to implement a fractional/smooth scrolling datagrid/listclass. I think it is a pretty substantial problem with the flex UI. To develop a smooth scrolling datagrid I assume you would have to rewrite, or alter to a high degree,

[flexcoders] Re: Problem with dispatching custom event from pop up window

2007-11-12 Thread j301c
:[EMAIL PROTECTED] On Behalf Of j301c Sent: Sunday, November 11, 2007 2:03 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Problem with dispatching custom event from pop up window I have a custom event that holds an array element. When I dispatch an event from a pop up window

[flexcoders] Problem with dispatching custom event from pop up window

2007-11-11 Thread j301c
I have a custom event that holds an array element. When I dispatch an event from a pop up window - by dispatching it from the mx.core.Application.application object - with data assigned to the array the event fires correctly, however, the data array element is no longer assigned any data.

[flexcoders] Re: How to call methods on popupwindow after its PopUpManager.centerPopUp is called

2007-11-10 Thread j301c
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of j301c Sent: Friday, November 09, 2007 6:26 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to call methods on popupwindow after its PopUpManager.centerPopUp is called I have a popupwindow

[flexcoders] How to call methods on popupwindow after its PopUpManager.centerPopUp is called

2007-11-09 Thread j301c
I have a popupwindow that should display information about and item selected from a datagrid on the main application. I have found examples where you can pass data to the popupwindow before centerPopUp is called. Is it possible to call methods, or pass data for that matter, on that