[flexcoders] Re: Not sure what to do here...

2008-06-02 Thread mr_delphi_developer
It does get data back from the server, it sends the error message, The result handler is entered because that is where it sows the "error" dialog.

[flexcoders] Re: Not sure what to do here...

2008-05-30 Thread mr_delphi_developer
Anyone able to help out here?

[flexcoders] Setting focus to a control upon applicationComplete

2008-05-29 Thread mr_delphi_developer
private function initApp():void { teamID.setFocus(); teamID.setSelection(0,0); } The entry caret is NOT shown in the control AND input is not focused to the control. Any ideas??

[flexcoders] Not sure what to do here...

2008-05-29 Thread mr_delphi_developer
I used the "Build Application from Database" and have everything going great. However, I added the capability to send two parameters to do some security checking in the initial HTTPService send. Now, when either of those two params fail the check, I am returning an error in the $toret array: $

[flexcoders] Re: Disable button if field is empty

2008-05-21 Thread mr_delphi_developer
--- In flexcoders@yahoogroups.com, "Manish Jethani" <[EMAIL PROTECTED]> wrote: > > On Wed, May 21, 2008 at 8:06 PM, mr_delphi_developer > <[EMAIL PROTECTED]> wrote: > > I have this input field and button. > > > > > editable="true"

[flexcoders] Re: Drilldown ideas

2008-05-21 Thread mr_delphi_developer
--- In flexcoders@yahoogroups.com, "markgoldin_2000" <[EMAIL PROTECTED]> wrote: > > If a user wants to drilldown into a dataGrid's cell what could have > been the best approach? Popup windows? Other ideas? If popup it is, can > I completely get rid of a blur affect when popup window is shown? >

[flexcoders] Disable button if field is empty

2008-05-21 Thread mr_delphi_developer
I have this input field and button. I don't want the button enabled until the team_pin has 4 characters. I've tried enabled="{team_pin.length < 4}" but it says "Invalid value: It must be one of true, false" How would I do that?

[flexcoders] Re: Debugging Flex3->AMFPHP

2008-05-19 Thread mr_delphi_developer
I have HTTPLook which is an HTTP Capture application. --- In flexcoders@yahoogroups.com, "actionscript_czar" <[EMAIL PROTECTED]> wrote: > > A very good tool for helping you debug any AMF source is Service > Capture. It is an inexpensive tool that has saved me hours of time > by being able to r

[flexcoders] Debugging Flex3->AMFPHP

2008-05-19 Thread mr_delphi_developer
I'm trying to get my head wrapped around how to use AMFPHP with Flex3 using Michale Rameriz's tutorial here: http://www.howtoforge.com/amfphp_adobe_flex2_sdk I've got a lot of the gotchas worked out but I get nothing back from the DB, the statusbar just says "Transferring data from localhost" whe

[flexcoders] Re: Using XMLList as dataprovider to DataGrid and Adding rows

2008-05-09 Thread mr_delphi_developer
ArrayCollection vs XMLListCollection vs XML), so you > should make those choices before you go much further with your client > implementation. > > > > Tracy > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On >

[flexcoders] Re: Using XMLList as dataprovider to DataGrid and Adding rows

2008-05-09 Thread mr_delphi_developer
--- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > Right. That's too much code to analyze, but generally, if you plan > to update a dataProvider programatically, do not use XMLList or > Array,as they do not dispatch the necessary events to update the > UI. With XML

[flexcoders] Using XMLList as dataprovider to DataGrid and Adding rows

2008-05-07 Thread mr_delphi_developer
In the code below, I'm having trouble figuring out how to add rows to the grid. I have found only one tutorial and using it's techniques doesn't seem to work. Can anyone help out here? http://www.adobe.com/2006/mxml"; layout="absolute" initialize="initApp();">