[flexcoders] Re: Component that has event listeners and handles it's own event

2006-03-10 Thread george_lui
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of george_lui Sent: Thursday, March 09, 2006 5:29 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Component that has event listeners and handles it's own event Hi, I have an interesting situation here. I have something

[flexcoders] Re: Component that has event listeners and handles it's own event

2006-03-14 Thread george_lui
-Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of george_lui Sent: Friday, March 10, 2006 4:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Component that has event listeners and handles it's own event Thanx for the info

[flexcoders] Hardware requirements for Flex performance

2006-03-28 Thread george_lui
Hi, Anyone here have any comments on how complexities in your Flex app can affect the performance? We have an app where we're fetching and displaying a lot of data. We're seeing the behavior where if we select too much of something to display, it won't display everything. A collegue

[flexcoders] Re: Hardware requirements for Flex performance

2006-03-29 Thread george_lui
. -Mika _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of george_lui Sent: 29. maaliskuuta 2006 10:08 To: flexcoders@yahoogroups.com Subject: [flexcoders] Hardware requirements for Flex performance Hi, Anyone here have any comments

[flexcoders] Is there a separator item for a ComboBox?

2006-05-03 Thread george_lui
Hi, Does the flex standard library have a separator (horizontal line) item that you can specify to insert into a ComboBox? I looked around, doesn't seem to be one, but I thought I'd ask around here as well. thx, George -- Flexcoders Mailing List FAQ:

[flexcoders] datagrid column sorting

2005-11-30 Thread george_lui
Hi, When you sort columns in a datagrid, I assume that data in a column is sorted according to its natural sorting order (whatever that may be). In my case it's a string. For some reason, the sorting on this column behaves differently. I have data that begins with uppercase and lowercase

[flexcoders] how do you guys handle browser back button cases?

2005-12-02 Thread george_lui
Say I logout in my Flex RIA. I then hit the browser back button. I got back to the last page. If I make another remoteObject invocation at this point, my code catches the invalidated session and it is dealt with accordingly. But I wanna catch the session invalidation status when I hit the back

[flexcoders] Does this work for the Grid component (variable column sizing)

2005-12-12 Thread george_lui
Say I have something like this... mx:Grid width=100% horizontalGap=5 verticalGap=7 verticalAlign=middle mx:GridRow mx:GridItem width=90% ...some component... /mx:GridItem mx:GridItem width=10% ...some component... /mx:GridItem

[flexcoders] Need help in tackling this event problem...

2006-01-06 Thread george_lui
Hi, Here's my scenerio: I have a view and it's corresponding ViewHelper. There are two buttons in the view. If I hit button A, I want action X to occur. If I hit button B, I want action Y to occur. This is how I broadcast my event in this view when I hit these buttons.

[flexcoders] Re: Need help in tackling this event problem...

2006-01-09 Thread george_lui
. Dimitrios Jimmy Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of george_lui Sent: Friday, January 06, 2006 9:37 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Need help

[flexcoders] Re: Need help in tackling this event problem...

2006-01-09 Thread george_lui
Event is a class in Cairngorm. I'm assuming that you meant that I should subclass the Event class right? TIA, george --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: Impossible to do with anonymous objects. However, if you make your event a class, you have no problems.

[flexcoders] Re: Need help in tackling this event problem...

2006-01-09 Thread george_lui
all of the properties that you set on the event carred over since the event you dispatch is the one you'll get in your result handler. - Original Message - From: george_lui [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, January 09, 2006 2:21 PM Subject

[flexcoders] Re: Need help in tackling this event problem...

2006-01-09 Thread george_lui
. - Original Message - From: george_lui [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, January 09, 2006 4:00 PM Subject: [flexcoders] Re: Need help in tackling this event problem... Actually that is the problem. The event I dispatch *doesn't* appear to be the same event I

[flexcoders] How to handle sessions in Flex

2006-01-13 Thread george_lui
Hi, I click on Logout in my application. However if I hit the browser Back button, I go back to the previous screen. I want to go to the login screen however. You guru's know how I would be able to do this? Can I catch the browser button events? George -- Flexcoders Mailing List FAQ:

[flexcoders] Re: How to handle sessions in Flex

2006-01-13 Thread george_lui
Of george_lui Sent: Thursday, January 12, 2006 5:37 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to handle sessions in Flex Hi, I click on Logout in my application. However if I hit the browser Back button, I go back to the previous screen. I want to go to the login screen

[flexcoders] Re: How to handle sessions in Flex

2006-01-17 Thread george_lui
Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of george_lui Sent: Friday, January 13, 2006 11:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to handle sessions in Flex thanx for the prompt reply. I neglected to mention some other

[flexcoders] problem with cell renderer in ComboBox

2006-02-16 Thread george_lui
Hi, I had a cellrenderer that was originally used in datagrid cell. I've since replaced the datagrid with a comboBox. I'm trying to reuse the same cellrenderer in the combo using the code below. mx:ComboBox id=employeeComboBox creationComplete=

[flexcoders] Re: problem with cell renderer in ComboBox

2006-02-17 Thread george_lui
[EMAIL PROTECTED] wrote: Hi, I'm not familiar with getDropdown(). Is getDropdown() a valid method of your combobox? If not, try event.target.dropdown. instead of event.target.getDropdown().. Doug --- In flexcoders@yahoogroups.com, george_lui george_lui@ wrote: Hi

[flexcoders] Re: problem with cell renderer in ComboBox

2006-02-17 Thread george_lui
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of george_lui Sent: Thursday, February 16, 2006 3:50 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] problem with cell renderer in ComboBox Hi, I had a cellrenderer that was originally used in datagrid cell. I've since replaced

[flexcoders] Re: problem with cell renderer in ComboBox

2006-02-21 Thread george_lui
location as your ComboBox mxml application. and do this mx:ComboBox creationComplete=test(event) function test(event){ event.target.dropdown.cellRenderer = FullNameRenderer; } --- In flexcoders@yahoogroups.com, george_lui george_lui@ wrote: Y'know I just did a blind copypaste from

[flexcoders] Re: problem with cell renderer in ComboBox

2006-02-21 Thread george_lui
a cell renderer. Any chance you can just use labelFunction if all you're doing is concatenation? I'm almost positive variableRowHeight also isn't going to work. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of george_lui Sent: Friday, February

[flexcoders] Re: problem with cell renderer in ComboBox

2006-02-28 Thread george_lui
={ModelLocator.employees} … / I still wondering why the cellRenderer solution didn't work. cheers, George --- In flexcoders@yahoogroups.com, george_lui [EMAIL PROTECTED] wrote: Hi, I had a cellrenderer that was originally used in datagrid cell. I've since replaced the datagrid

[flexcoders] Component that has event listeners and handles it's own event

2006-03-09 Thread george_lui
Hi, I have an interesting situation here. I have something like below. mx:ComboBox id=employeeCB labelFunction=formatName change=empFolderViewHelper.cbChanged(event); mx:dataProvider { ModelLocator.employees } /mx:dataProvider /mx:ComboBox There's a handler