[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: http://groups.yahoo.com/group/fl

[flexcoders] Re: Hardware requirements for Flex performance

2006-03-29 Thread george_lui
processor performance effects a lot on usability with Flex 1.5. > > > > -Mika > > > > _ > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of george_lui > Sent: 29. maaliskuuta 2006 10:08 > To: flexcoders@yahoogroup

[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 hypothesize

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

2006-03-14 Thread george_lui
erse of the order in which addEventListener() added > them. > > - Gordon > > > -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 >

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

2006-03-10 Thread george_lui
If > this isn't happening, please file a bug. > > - Gordon > > > -Original Message- > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of george_lui > Sent: Thursday, March 09, 2006 5:29 PM > To: flexcoders@yahoogroups.com > S

[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. { ModelLocator.employees } There's a handler for its "change" event. I also have event listeners of this comboBox that listens to the change event as well. view.employeeCB.addEventListener('change', fooViewHelper);

[flexcoders] Re: problem with cell renderer in ComboBox

2006-02-28 Thread george_lui
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 with a comboBox. I'm trying to reuse t

[flexcoders] Re: problem with cell renderer in ComboBox

2006-02-22 Thread george_lui
Peter Ent's weblogs. check out the cellrenders section > > http://weblogs.macromedia.com/pent/archives/2004/12/index.cfm > > the code can be downloaded and there is a sample test app to see it > in action. its very good. > > > --- In flexcoders@yahoogroups.com, &

[flexcoders] Re: problem with cell renderer in ComboBox

2006-02-21 Thread george_lui
7;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 17, 2006 11:10 AM > To: flexcoders@yahoogroups.com > Subject:

[flexcoders] Re: problem with cell renderer in ComboBox

2006-02-21 Thread george_lui
Renderer into > the same folder location as your ComboBox mxml application. > > and do this > > > function test(event){ > event.target.dropdown.cellRenderer = FullNameRenderer; > } > > > > > --- In flexcoders@yahoogroups.com, "george_lui"

[flexcoders] Re: problem with cell renderer in ComboBox

2006-02-17 Thread george_lui
l Message- > From: flexcoders@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 cellrender

[flexcoders] Re: problem with cell renderer in ComboBox

2006-02-17 Thread george_lui
oogroups.com, "Doug Lowder" <[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().

[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. { ModelLocator.employees } The FullNameRenderer cellrenderer I have just takes the first and

[flexcoders] Re: How to handle sessions in Flex

2006-01-17 Thread george_lui
[EMAIL PROTECTED] > Office: 866-CYNERGY > Mobile: 1.703.489.6466 > > > > -Original Message- > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of george_lui > Sent: Friday, January 13, 2006 11:46 AM > To: flexcoders@yahoogroups.co

[flexcoders] converting to RTF in flex

2006-01-13 Thread george_lui
Hi, I have a concept of a "form" in my flex app. I have this requirement where we want to export this "form" into an RTF formatted file. Has anyone ever done this before? Do you know of any flex capabilities that could assist me in implementing this? Thanx, George -- Flexcoders Mailing L

[flexcoders] Re: How to handle sessions in Flex

2006-01-13 Thread george_lui
ERGY > Mobile: 1.703.489.6466 > > > > -Original Message- > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of george_lui > Sent: Thursday, January 12, 2006 5:37 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] How to handle

[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: Need help in tackling this event problem...

2006-01-09 Thread george_lui
ilizing the Responder's result event can look there for context. > > - Original Message - > From: "george_lui" <[EMAIL PROTECTED]> > To: > Sent: Monday, January 09, 2006 4:00 PM > Subject: [flexcoders] Re: Need help in tackling this event problem...

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

2006-01-09 Thread george_lui
es when I was > reading the files, yeah. If you dispatch the event, he should have 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: "ge

[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 pro

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

2006-01-09 Thread george_lui
ou can look it up > once onResult() or onFault() are fired. > > Dimitrios "Jimmy" Gianninas > RIA Developer > Optimal Payments Inc. > > > ____ > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of

[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. CommandEventBroadcaste

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

2005-12-12 Thread george_lui
Say I have something like this... ...some component... ...some component... The layout displays fine, but the cell column widths are fixed. I want the first column to always occupy 90% of the width when I resize

[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 "ba

[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 letter