Ray,

Yes, I'm only seeing the first step. I can't figure out how to make the PLP
run outside of the webtop app. I've tried countless work-arounds, but I
don't think it's supposed to be this difficult to employ.

My edit handler is a custom handler that is registered, and it calls an edit
PLP. Here's a question... if the page keeps submitting to itself, then I
can't really use a cfa_contentObjectCreate with a method of 'edit' here can
I?

Can you suggest something that will work?

Thanks,
Nate


-----Original Message-----
From: Raymond Camden [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 23, 2001 8:55 AM
To: Spectra-Talk
Subject: RE: Creating an Object Outside of the Webtop


Look at the code below. I'm assuming your PLP posts to itself, right? Well,
I bet it's not passing form.submitTypeID. So, tell me, are you seeing the
first step of your PLP and that's it?

Oh, and did you define the Edit method for your type? Out of the box, all
types have a default edit method, but in order for YOUR edit method to work,
you have to go into the type editor and add a method called edit.

=======================================================================
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

"My ally is the Force, and a powerful ally it is." - Yoda

>
> <CFIF ISDEFINED("form.submitTypeID")>
>     <CFSET theID = CREATEUUID()>
>     <CFA_contentObjectCreate
>         DATASOURCE="#request.cfa.objectstore.dsn#"
>         OBJECTID="#theID#"
>         TYPEID="#form.submitTypeID#"
>         METHOD="edit"
>         >
> </CFIF>
>
> -
> Nate Smith,
> Lead Developer
> [EMAIL PROTECTED]
> www.doceus.com
>
>
>
>
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
------------------------------------------------------------------------------
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/spectra_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to