[flexcoders] Re: Weborb to return XML data

2008-12-17 Thread gjessup1
Why would you want to do this? I would adjust the graph to take an array collection or object as a datasource. I think you could hack it in your C# code to pass a xml object or array with xml in it. But To me it defeats the purpose of weborb. I would take the approach of changing the

[flexcoders] Catch Browser Exit with Flex

2008-07-30 Thread gjessup1
I'm having some issues with catching a browser exit with firefox. I can get it to work with IE (not exactly how I'd like, but it works). Does anyone have a good working example available...here is my code if you can help from that. Thanks Greg My javascript looks like this: script

[flexcoders] Flex Dashboard

2008-07-21 Thread gjessup1
Hey all, I have been watching this group for a while and figured many of you could benefit from a project I started called the Flex Dashboard. The google group is http://groups.google.com/group/flex-dashboard Its basically a database driven module loader. It is currently using MSSQL Server as

[flexcoders] Re: Flex Dashboard

2008-07-21 Thread gjessup1
Added a code project for those interested http://code.google.com/p/flex-dashboard/ --- In flexcoders@yahoogroups.com, gjessup1 [EMAIL PROTECTED] wrote: Hey all, I have been watching this group for a while and figured many of you could benefit from a project I started called the Flex Dashboard

[flexcoders] AdvancedDataGrid with GroupingCollection Expand on Refresh

2008-07-09 Thread gjessup1
I have a GroupingCollection whose source is an ArrayCollection. Then have an advanced datagrid who's dataprovider is the GroupingCollection. This gives me the expand collapse. The ArrayCollection is populated by a real time event which fires every (x) seconds. At that point I do a

[flexcoders] Re: Bind to Dynamic Component or Panel

2008-05-06 Thread gjessup1
to worry about where it is in the dom. Tracy --- In flexcoders@yahoogroups.com, gjessup1 gregjessup@ wrote: Oscar, Thanks for that. That is basically exactly what I needed. The one problem I am running into is that I want my panels to be only 3 wide on the page and I have 12 entries

[flexcoders] Flex Pop Out Window

2008-04-24 Thread gjessup1
I am looking for the ability top pop a panel, which is loaded as a module out of the browser to a new browser windows. (much like google chat within gmail). Has anyone done anything like this or seen an example of how to do it. Any info you could provide would be Great!!! thanks, greg

[flexcoders] Pop Out of Browser

2008-04-24 Thread gjessup1
I have written and a chat client for internal application support. I would like to give it the functionality to be able to pop it out of the browser (much like google chat). Has anyone done this or seen any example code on the net on how to do this. Any info someone could provide would be great!

[flexcoders] Re: Get Key Value Pair from an Object

2008-04-16 Thread gjessup1
I actually found the answer almost immediately after I posted. Here is the code in case anyone else has this issue. for (key in vars) { detailArray.addItem({key:key, value:vars[key]}) }

[flexcoders] Bind to Dynamic Component or Panel

2008-04-16 Thread gjessup1
I am creating a UI that gets configured from a database. For each DB entry it creates a panel dynamically. Then I have my app receiving messages. Based on the values in the message I decide which panel I want to display the message on. My question is when a panel is dynamically generated. How do

[flexcoders] Re: Bind to Dynamic Component or Panel

2008-04-16 Thread gjessup1
Oscar, Thanks for that. That is basically exactly what I needed. The one problem I am running into is that I want my panels to be only 3 wide on the page and I have 12 entries in the DB. So I am creating a page 3 panels wide and 4 panels down. To do this I create a new HBOX every 3rd Panel. so

[flexcoders] Get Key Value Pair from an Object

2008-04-15 Thread gjessup1
I have an array of objects that gets returned and handled in an event. Once I determine that I need the values in Array[0]...I need to loop through my Object located at Array[0] and get the key value pairs. I am trying to do this for each(var o:String in myobj) {