[flexcoders] display CLOB in datagrid

2009-01-08 Thread Mr Greg Murnock
We have EDI data being written into a CLOB datatype field in an Oracle database.  My query returns records ( changed to array collection) however they are not displayed in the datagrid.  There are no errors triggered just no visible data.  Any suggestions?   Oracle 10g CF7 FLEX 3 gmurnock

[flexcoders] Flex SSL over AMF with ColdFusion services-config.xml - Peter Farland

2008-03-11 Thread Mr Greg Murnock
This topic was covered way back in Jan, seems so long ago... :) Mr Peter Farland - looks like you have gone thru what we are trying to do. Could you please contact me back? It would be very much appreciated. Multiple environments, multiple servers, not using -services tag, dynamically

[flexcoders] another visit to -services tag and RemoteObject

2008-03-06 Thread Mr Greg Murnock
This has been talked about a few times but wanted to share my breakthru... Flex accessing CF7 via RemoteObject. All environments are different so editing all the services-confg.xml files is not an option. I removed the -services and have my wrapper CFM create the toString(http:/

Re: [flexcoders] Re: Defining a root folder for BlazeDS installed on remote server

2008-03-06 Thread Mr Greg Murnock
Instead of pointing to the location of your services-config.xml try creating in Flex without the remoting server. Then try... Flex accessing CF7 via RemoteObject. All environments are different so editing all the services-confg.xml files is not an option. I removed the -services and have my

[flexcoders] Why upgrade to FB3?

2008-02-15 Thread Mr Greg Murnock
For the big discussion of the day/week... I have been given the task to give a strong case on why we need to spend the money (proposed pricing schedule) on the upgrade to FB3, when available. Our company does not look to do AIR apps, we do not have a case to use Advanced Datagrid, we front

[flexcoders] What happened to auto import - F3B3

2008-01-25 Thread Mr Greg Murnock
Just loaded F3B3 on Eclipse. In FB2 standalone anytime you used a class from the mx package it would autoimport the path to the class or package. F3 does not auto import or is this a setting I need to toggle greg

[flexcoders] looking for a component

2008-01-23 Thread Mr Greg Murnock
A couple weeks ago I ran across a component someone built that had multiple headers for a datagrid where the top header was lets say Year and the second header line was Quarter. On click of one of the headers the DG would drill into the displayed data, Quarter would now be top header and Month

[flexcoders] looking for a component - previously reviewed

2008-01-23 Thread Mr Greg Murnock
A couple weeks ago I ran across a component someone built that had multiple headers for a datagrid where the top header was lets say Year and the second header line was Quarter. On click of one of the headers the DG would drill into the displayed data, Quarter would now be top header and Month

Re: [flexcoders] Close MDIWindow

2008-01-03 Thread Mr Greg Murnock
MDIWindow id=name name.close() - Original Message From: Bit [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, January 3, 2008 1:33:52 PM Subject: [flexcoders] Close MDIWindow Hi people! How to do call event close of MDIWindow? thx Bit

Re: [flexcoders] AdvancedDataGrid - how to clear contents?

2008-01-03 Thread Mr Greg Murnock
Are you sure there isn't another datProvider set somewhere? I use ADG.dataProvider = null to clear datagrids out in a couple different areas and have never had a problem. also make sure you aren't reasigning the original DP somewhere. Greg - Original Message From: mitek17 [EMAIL

[flexcoders] displaying the results of a UNION query in Flex DataGrid

2008-01-02 Thread Mr Greg Murnock
Can this be done in a Flex 2 DataGrid? anything I need to be aware of? Currently returning results via Remote Object as an Array from CF. Thanks, Greg Never miss a thing. Make Yahoo your home page.

[flexcoders] disable edit in DataGrid row depending on cell value

2007-12-18 Thread Mr Greg Murnock
What is the best way to disable the edit property, or any other property, in a DataGrid cell row based on the value of an item in a row? For Instance - say I don't want a value to be edited because that order has already been processed. Greg

Re: [flexcoders] disable edit in DataGrid row depending on cell value

2007-12-18 Thread Mr Greg Murnock
actually I found exactly what I was looking for at: http://blogs.adobe.com/aharui/2007/03/thinking_about_item_renderers_1.html Thanks for the write up Alex. Greg - Original Message From: Mr Greg Murnock [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, December 18, 2007 3

Re: [flexcoders] Stage problems

2007-11-20 Thread Mr Greg Murnock
I had to use: import flash.display.Sprite; to do anything with the stage. hope it helps. Greg Murnock - Original Message From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, November 16, 2007 1:09:16 AM Subject: [flexcoders] Stage problems

Re: [flexcoders] Re: Flex for database apps; compare to .net

2007-11-14 Thread Mr Greg Murnock
I'm lucky enough, I think lucky :), to have ColdFusion as my middle tier. Connected to Oracle, MS SQL, and MySQL, Oracle 100% now but started with MySQL and MS SQL. Also have a friend who uses PHP fronting MySQL. RemoteObjects calling ColdFusion .CFCs totaly ROCK for database communication

[flexcoders] Multiple filter criteria in DataGrid

2007-11-13 Thread Mr Greg Murnock
I have a DG populated by an AC. I want to filter the DG with any number of selection criteria, up to 4 plus between dates. I can get one of the item=selected to work but not more than one. Is this where I need to have a big nested IF statement with a bunch of boolean expressions to

Re: [flexcoders] Multiple filter criteria in DataGrid

2007-11-13 Thread Mr Greg Murnock
Are you choosing between filters or need a complex filter? You can set up just about anything as a filterfunciton on the collection. From: [EMAIL PROTECTED] ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf Of Mr Greg Murnock Sent: Tuesday, November 13, 2007 10:42 AM To: [EMAIL PROTECTED

Re: [flexcoders] Flex acting weird

2007-10-26 Thread Mr Greg Murnock
and the build /test people have no idea except to push a button to release code into testing and production. I used the example: http://yakovfain.javadevelopersjournal.com/passing_parameters_to_flex_that_works.htm Greg - Original Message From: Mr Greg Murnock [EMAIL PROTECTED] To: flexcoders

[flexcoders] Flex acting weird

2007-10-24 Thread Mr Greg Murnock
Standalone Flex Builder2 fronting ColdFusion. current line count is a whopping 781 lines. I try to add ANY click event even to a button and I get: ReferenceError: Error #1065: Variable is not defined. at global/flash.utils::getDefinitionByName() Notice there is not a name of the Variable.

[flexcoders] calling stage.stageWidth

2007-10-23 Thread Mr Greg Murnock
I'm trying to get the current user's browser/player size by using stage.stageWidth. However, Flex is coming up too fast and value=0. I have even put a function call at the end of one of my RO calls just to give it a little time to render the screen. If I call the function on a button click

Re: [flexcoders] questions about Flex and deploying on servers

2007-10-19 Thread Mr Greg Murnock
Working thru the same problem here. Need to know how to compile Flex with CF backend and not having to use the Flex Server root folder and URL. it has to be an easy path for people who do the migration to QA and Production as developers do not have any access to those servers. the paths can

Re: [flexcoders] DateFormatter formats dates incorrectly in AdvancedDataGridColumns

2007-10-19 Thread Mr Greg Murnock
I ran into the same problem about a week ago but from data bound to a label on selection of the DG. The DGColumn has a labelFunction=dateFormat Selected format from the DG is in the correct format with: private function dateFormat(item:Object, column:DataGridColumn):String { return

Re: [flexcoders] Re: Flex MDI

2007-10-16 Thread Mr Greg Murnock
( ); --- In [EMAIL PROTECTED] ups.com, Mr Greg Murnock [EMAIL PROTECTED] . wrote: Hi Ben, Yes that is correct. So I just call the ID of my MDIWindow.minimize? Or is there something a bit more? old school we would use nameOfButton. click but there isn't a name on the MDI buttons, or is there... :) Greg

Re: [flexcoders] Re: Flex MDI

2007-10-15 Thread Mr Greg Murnock
misunderstood your request let me know. HTH, Ben --- In [EMAIL PROTECTED] ups.com, Mr Greg Murnock [EMAIL PROTECTED] . wrote: Anyone else using the FLEX MDI? (awesome stuff by the way) How would I call/activate the click event for the minimize button of an MDIWindow using the FLEX MDI? Greg