RE: [flexcoders] Irregular Tables and TreeTables

2005-11-10 Thread Malcolm
…perhaps another component?     Malcolm   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Richard Rodseth Sent: Friday, 11 November 2005 3:58 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Irregular Tables and TreeTables   Has anybody done

RE: [flexcoders] Recognizing when a CheckBox inside a DataGrid is clicked

2005-11-10 Thread Malcolm
update the dataProvider and the date displayed in the dataGrid. Hope this helps, Malcolm -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of fowleryj Sent: Friday, 11 November 2005 8:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Recogniz

RE: [flexcoders] ColorPicker

2005-10-26 Thread Malcolm
Title: Message Yes, I too have had problems using the ColorPicker in a modal window. Works fine if it’s not in TitleWindow but as soon as I put it in a modal true TitleWindow (that is opened from another TitleWindow) I can not even select a color :-(   Malcolm   From

RE: [flexcoders] Cairngorm ModelLocator

2005-10-06 Thread Malcolm
Personally couldn't see a problem with doing that Simon. hmmm a factory approach for multiple ModelLocators, now that would be cool! Provided binding still worked that this is :] m -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Simon Fifiel

[flexcoders] Cairngorm ModelLocator

2005-10-05 Thread Malcolm
to filter users have the FilterUsersModelLocator as well as their own. Works beautifully. Same goes for controllers. The plumbing is worth the effort, you'll never look back :D Hope this helps. Malcolm -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTE

RE: [flexcoders] Problem with ServiceLocator in Cairngorm

2005-10-03 Thread Malcolm
is throwing an error; it’s just not being caught.   You’ll have to open up the cairngorm code and locate the throw; should help track down the problem.   Best, Malcolm   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Andora, Greg Sent: Tuesday, 4

RE: [flexcoders] userlogin

2005-09-12 Thread Malcolm
Have you tried passing a NULL as your last argument? I know this sounds strange, but it works when using remote objects (AMF), not too sure if the same goes for cf web services. Thus your call in as will look like this: srv.qpUserLogin(usr, pss, NULL); And in your cfc arguments define a 'FlexNUL

RE: [flexcoders] CFC debugging & netConnectionDebugger

2005-08-25 Thread Malcolm
e my a unittest/dump.cfm i simply dump out session scope with the error. Its cumbersome but helps. On 8/26/05, Malcolm <[EMAIL PROTECTED]> wrote: > > > > In recent posts to the group I can see people having with fun tracking down > bugs in their CFC's from Fle

RE: [flexcoders] CFC debugging & netConnectionDebugger

2005-08-25 Thread Malcolm
ror.email = "[EMAIL PROTECTED]";    request.error.enableEmail = false;    request.error.enableErrorFile = true;   A big thank you from all of us CFCers, Darius -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]On Behalf Of Malcolm

RE: [flexcoders] CFC debugging & netConnectionDebugger

2005-08-25 Thread Malcolm
Yep, just put the request scoped vars in an Application.cfm and it will work fine.   Malcolm   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED] Sent: Friday, 26 August 2005 10:58 AM To: flexcoders@yahoogroups.com Subject: RE

[flexcoders] CFC debugging & netConnectionDebugger

2005-08-25 Thread Malcolm
returns all cfcatch information to the netConnectionDebugger. No more “debugging in the dark” as Darius put it :]   Cheers, Malcolm -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders

RE: [flexcoders] Calling ArrayStructures in CFCs from Flex

2005-08-15 Thread Malcolm
Great, will definitely take a look, agreed, we certainly need some sort of reference…The dark art of Flex & CFC’s.   Malcolm   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, 16 August 2005 6:13 A

RE: [flexcoders] Calling ArrayStructures in CFCs from Flex

2005-08-10 Thread Malcolm
an be accessed) At the moment I am mostly using queries to get data back. This has the unfortunate side effect of losing typing (everything in the query is a string), thus you may need cast some results etc to their correct type in Flex. Malcolm -Original Message- From: flexcoders@yaho

RE: [flexcoders] Using Value Objects & CFC's

2005-07-26 Thread Malcolm
Testify! That sure did the trick. I have done the following -- in the LoginDelegate.as -- var call = service.login( { loginVO : loginVO } ); -- cfc -- Thanks Allen. Malcolm -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] Using Value Objects & CFC's

2005-07-25 Thread Malcolm
, Malcolm -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Allen Manning Sent: Tuesday, 26 July 2005 3:11 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Using Value Objects & CFC's Malcolm, We are doing this very thing and it is wor

RE: [flexcoders] Using Value Objects & CFC's

2005-07-24 Thread Malcolm
ations you can not pass your own data types. m -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Malcolm Sent: Sunday, 24 July 2005 3:56 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Using Value Objects & CFC's Ok think I

RE: [flexcoders] Using Value Objects & CFC's

2005-07-24 Thread Malcolm
Objects & CFC's a CFC can except "types" defined by another CFC. In the cfargumnet tag use the CFC name, dot.noted.paths.are.ok.too. Note, the CFC method can also return "types" defined by CFCs too. DK On 7/23/05, Tariq Ahmed <[EMAIL PROTECTED]> wrote

[flexcoders] Using Value Objects & CFC's

2005-07-23 Thread Malcolm
to perform a deep copy of the object or something like that? Any thoughts appreciated. Regards, Malcolm -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Group

[flexcoders] Accordion Navigation & Components

2005-07-05 Thread Malcolm
t when I instantiate it? Am I using the right approach here or do I need to create some sort of form/accordion management class? Thank you for any suggestions. Regards, Malcolm -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: h

RE: [flexcoders] Cairngorm For Dummies?

2005-06-25 Thread Malcolm
That is bloody awesome! Yes definitely helped, many many thanks Steven, I know you must be a very person.   Regards, Malcolm   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Steven Webster Sent: Saturday, 25 June 2005 1:05 AM To: flexcoders

[flexcoders] Cairngorm For Dummies?

2005-06-24 Thread Malcolm
h-II); learning to use Cairngorm with existing documentation is tough. Now that I have made friends, back to ripping stuff apart and trying to put it back together. ...maybe I need to read chapter 23 of 'developing rich clients with macromedia flex' book again? Regards, Malcolm Barclay -- Fl

Re: [flexcoders] Trademark Symbol

2005-06-24 Thread Malcolm Barclay
Thanks Gordon, thought there must be a way to do it in unicode. Yes a set of common symbols would be cool, but I guess one can always use the code, after finding it :) Regards, Malcolm On 6/24/05, Gordon Smith <[EMAIL PROTECTED]> wrote: > > > You almost had it, but you were miss

[flexcoders] Melbourne Flex Developers User Group?

2005-06-24 Thread Malcolm
Is there anyone on this list based in Melbourne Australia? Has a user group sprung up yet? Now if you'll excuse me, I need to remove another kangaroo from the front yard. Cheers, Malcolm -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt S

[flexcoders] Trademark Symbol

2005-06-23 Thread Malcolm
Oh too easy :) Thanks Greetz; that did the trick. Malcolm -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Erik Westra Sent: Thursday, 23 June 2005 6:47 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Trademark Symbol Just do it the

[flexcoders] Trademark Symbol

2005-06-23 Thread Malcolm
h? IE Unicode characters higher than 256. Many thanks in advance, Malcolm -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on