[flexcoders] Re: Select row in Advanced Data Gridprogrammatically for unit test

2009-02-24 Thread bobignacio
Try this... Given: 1. The grid's dataProvider is bound to a bindable var named "dp" [Bindable] private var dp:ArrayCollection; 2. A DataGrid with an id="grid"... -1) { grid.dispatchEvent(new ListEvent(ListEvent.ITEM_CLICK)); } // Ensure that the row is highlighted and displayed grid.verticalS

[flexcoders] Re: Looking for ideas

2008-04-15 Thread bobignacio
Why not use 2 list boxes side by side and drag and drop between the 2? One being the total list of tasks and the other the sequence to create/follow. The user can then make modifications visually with both lists. Bob I. --- In flexcoders@yahoogroups.com, "markgoldin_2000" <[EMAIL PROTECTED]> wrot

[flexcoders] Re: How the hell do you debug a 1009 error from SOAP?

2008-04-14 Thread bobignacio
You can always use the following in your mxml file... Just after the first "Application" tag, type the following: This will give you everything that is going across the wire from your flex app and if anything comes back to your flex app as well. Hope this helps, Bob I.

[flexcoders] Re: What hosting compagny are you using for Flex + (Blaze || LCDS)

2008-04-14 Thread bobignacio
I've set up BlazeDS on my eapps server. The samples run fine. I do notice a bit of lag some of the time with the Dashboard app. I yet to figure out how to set up a proxy service via BlazeDS...even following examples...still having some issues. Bob I. --- In flexcoders@yahoogroups.com, "Richard

[flexcoders] Re: RichTextEditor - format preservation

2008-01-30 Thread bobignacio
Have you read up on the Cairngorm Microarchitecture? You may want to consider using this framework cuz what you are describing will handle that use case... updating multiple views when your data model changes. Here is the main page...there is also information in Adobe Labs as well. We've used Cairn

[flexcoders] Re: RichTextEditor - format preservation

2008-01-29 Thread bobignacio
Hi there, Snippet of your code... [Bindable] public var contents:String = ""; private function handleChange(event:Event): void { contents = editor.htmlText; // My Debug trace("Change Fired and Caught"); trace("Contents: " + contents); trace("Editor Updated: " + edi

[flexcoders] Re: Web Hosting

2008-01-26 Thread bobignacio
Thanks for all the input...signed up with eapps.com. Got my flex test application up and running :) Bob I. --- In flexcoders@yahoogroups.com, "Richard Rodseth" <[EMAIL PROTECTED]> wrote: > > Rimu, JaguarPC, kgbinternet are some that others have mentioned to me. > Googling "servlet hosting" would

[flexcoders] Re: Web Hosting

2008-01-25 Thread bobignacio
I read up on eapps.com hosting. The user guides they provide are the most detailed I've seen so far from any provider. In addition to their control panel for administration, they also give you root access. Have you seen any other web site with this type of support for java hosting?

[flexcoders] Re: internet explorer problem

2008-01-24 Thread bobignacio
Hi there, I see 2 possibilities... First... Take a look at Photoshow.mxml. I don't see where your pictures array is initialized as in "pictures = new Array();" When the swf is loaded into the browser, your pictures array is still null. It is possible that IE just has a problem with that while th

[flexcoders] Web Hosting

2008-01-24 Thread bobignacio
Hello All, It isn't that easy in deciding which web hosting service to use. What web hosting service are you using for your flex applications? And as for application servers, I use tomcat at work...any thoughts on JBoss, etc? Thanks, Bob I.

[flexcoders] Re: Error 1009 When Calling a WebService

2007-11-18 Thread bobignacio
Hey Jay, When looking at the WSDL from weather.gov: http://www.weather.gov/forecasts/xml/DWMLgen/wsdl/ndfdXML.wsdl These are the following sections of the WSDL which is posted which you are attempting to use: In your flex application, reexamine that the method name is spelled

[flexcoders] Re: Error 1009 When Calling a WebService

2007-11-15 Thread bobignacio
Set the following on the line right after the " Run your application in debug mode. This will allow you to see all the network traffic going across the wire. See if you actually get a response from the NDFD web service. Hope this helps, Bob I. --- In flexcoders@yahoogroups.com, "jaywood58" <[E

[flexcoders] Re: Saving text with RichTextEditor . . . how?

2007-05-22 Thread bobignacio
Take a look at the following thread: Message #66109 Hope this helps, Bob I. --- In flexcoders@yahoogroups.com, "crumpelfungus" <[EMAIL PROTECTED]> wrote: > > OK, so I've tried out a few things with Flex's RichTextEditor, and I can > get it to work quite well for my purposes. > > However, does

[flexcoders] Re: events not being called: HTTPService

2007-05-14 Thread bobignacio
> You can also put at the beginning of the source > code right after the tag. This will spew out the > entire request which is being sent out onto the wire...it may give you > some clues. P.S. If you are writing it in pure AS3...check this out... http://livedocs.adobe.com/flex/2/docs/wwhelp/ww

[flexcoders] Re: events not being called: HTTPService

2007-05-14 Thread bobignacio
For the following line: public var xmlLocation:String = "./questionaire.xml"; A few simple questions... Is "questionaire.xml" spelled correctly? Is this file found in the same directory as the Main.mxml? Where is this file located? You can also put at the beginning of the source code right aft

[flexcoders] Re: Barchart display issue with ArrayCollection and filterfunction

2007-05-14 Thread bobignacio
Have you tried to "refresh()" the ArrayCollection after you used the filterFunction? myArrayCollection.refresh(); And how about posting your source code... --- In flexcoders@yahoogroups.com, "haiqing7" <[EMAIL PROTECTED]> wrote: > > > In my barchart project, when I use filterfunction to filter

[flexcoders] Re: Flex Course ?

2007-04-25 Thread bobignacio
Total Training has 2 DVDs which are available: Adobe Flex 2 Rich Internet Applications I found this to be an excellent tutorial and still refer to it every now and then. Adobe Flex 2 Advanced Visual Programming This one offers more tutorials with Visual Effects, however, it isn't as fast paced

[flexcoders] Can Cartesian Chart DataTips be set to always be showing once the chart appears?

2007-04-20 Thread bobignacio
Hi All, I haven't had any trouble formatting the datatips in a PlotChart using the dataTipFunction but it is a requirement for me to have them showing all the time without mousing over them. The mouseSensitivity can be set to a large number, however, the mouse is still the trigger. Is there any th

[flexcoders] Re: Converting string to base64Binary

2007-03-09 Thread bobignacio
Here is one of my posts which may help... http://tech.groups.yahoo.com/group/flexcoders/message/66247 Bob I. --- In flexcoders@yahoogroups.com, "Brian Holmes" <[EMAIL PROTECTED]> wrote: > > Does anybody have an example of how I can do this? Everything I've tried > blows up. > > Thanks, > >

[flexcoders] Re: new to webservices in flex - need help! :)

2007-03-08 Thread bobignacio
Try this... The property: click="myService.getProjects()" should be: click="myService.getProjects().send()" Hope this helps, Bob I. --- In flexcoders@yahoogroups.com, "captnjay_mobile" <[EMAIL PROTECTED]> wrote: > > [RPC Fault faultString="HTTP request error" > faultCode="Server.Error.Req

[flexcoders] Re: Filterfunction on a XMLListCollection is misbehaving

2007-02-27 Thread bobignacio
Any chance you can post your source code? --- In flexcoders@yahoogroups.com, "iko_knyphausen" <[EMAIL PROTECTED]> wrote: > > > Here is the deal... I have an XMLListCollection as a dataProvider for a > dataGrid, so that I can use custom sort and filterfunctions. My > application provides for edit

[flexcoders] Re: WS call sucessful with resultFormat="e4x", fails otherwise

2007-02-27 Thread bobignacio
Have you tried the "TraceTarget" tag in mxml? This allows you to see everything being sent across the wire and everything coming back. Under your tag, set the following: And then run the debugger. Hope this gives you some clues. Bob I. --- In flexcoders@yahoogroups.com, "ben.clinkinbeard"

[flexcoders] Re: Storing / retrieving rich text

2007-02-27 Thread bobignacio
I originally posted this on Adobe's web site back in Nov/06... Title: Sending a ByteArray of rich text to a Java Web Service via WebService component. Topic: Keeping the rich text (HTML formatted string) intact I was able to send and receive rich text (HTML formatted txt) intact via a Java web s

[flexcoders] Re: Getting XML from an item in an ArrayCollection

2007-02-27 Thread bobignacio
Can you post your syntax for the HTTPService call? And what datatype is "stockData" in the following? stockData = ArrayCollection(stockDetailCollection.getItemAt(0).RATES); Thanks, Bob I. --- In flexcoders@yahoogroups.com, "gekkemus" <[EMAIL PROTECTED]> wrote: > > I have a simple HTTPService t

[flexcoders] Re: Need help seaching and comparing in an ArrayCollection

2007-02-27 Thread bobignacio
flex 2 provides a more efficient way of manipulating an ArrayCollection using a "filterFunction" from the IViewCollection Interface. This also provides the use of a cursor which you can use to manipulate the collection as well. Sorting is first required if you want to use a cursor. Filtering can be

[flexcoders] Re: ArrayCollection.filterFunction assigned but returns null

2007-02-27 Thread bobignacio
ovider based on UI selections. > > I was unable to reproduce the issue in a simple test project, which > implies the issue lies elsewhere, but I just don't understand how I > could be seeing the values and results I am and still have null be > returned. > > Thanks, >

[flexcoders] Re: ArrayCollection.filterFunction assigned but returns null

2007-02-27 Thread bobignacio
Any chance to post your source code? --- In flexcoders@yahoogroups.com, "ben.clinkinbeard" <[EMAIL PROTECTED]> wrote: > > Anyone? > > > --- In flexcoders@yahoogroups.com, "ben.clinkinbeard" > wrote: > > > > I've got a filterFunction assigned, the DataGrid that is bound to the > > ArrayCollecti

[flexcoders] Re: Return of single object from ColdFusion

2006-11-17 Thread bobignacio
You can always try the following: thisPerson = (Employee)(event.result); However, you may get the error of "cannot convert Object to Employee. But its worth a try. Bob I. --- In flexcoders@yahoogroups.com, "Wally Randall" <[EMAIL PROTECTED]> wrote: > > Problem: > When I invoke the "get" functi

[flexcoders] Re: Accesing complex structures in result from WebServices

2006-10-30 Thread bobignacio
= new Object(); > foo.bar = "someString"; > foo.count = 10; > myWsOp.arguments = args; > myWsOp.send(); > > should automagically send > > >someString >10 > > > to your WebService's operation. > > HTH, > Ben > > > > -

[flexcoders] Re: Accesing complex structures in result from WebServices

2006-10-30 Thread bobignacio
--- In flexcoders@yahoogroups.com, Leo <[EMAIL PROTECTED]> wrote: >> When i define this web service in flex and i make the call >> websphere receive this call with the parameters that i sent >> correctly (complex structures included) Hi Leo, I have recently been playing with the flex WebService