Hi All,

I am having a perplexing problem. I have a custom plugin that I am writing.
I have all of the cfc's written and most of the webskins written. Deciding
that I had written enough to test things out, I loaded the plugin, deployed
the types, and started adding some random data.

Everytime I save an object of a type (or cancel editing the object) it
should take me back to the table of objects where I can add/edit/delete etc.
That's how it works for all my other plugins / types etc that are defined
using the customadmin.xml. The problem here is that instead of taking me
back, it throws an error because apparently it doesn't have the plugin name
defined.

 Here are the menu items and cfm pages that are used to construct the
objectadmin page. Any ideas where the error is? I've been scratching my head
about this one...Same xml structure as far as I can tell works for other
plugins (googlemaps/idlform) and farcrycms.

Thanks

Tomek

portion of xml:

                <menuitem mergetype="merge" id="gridPresenter"
sequence="70"
                    label="Presenters" relatedtype="gridPresenter"

link="/admin/customadmin.cfm?plugin=gsgGRID&amp;module=customlists/gridPresenter.cfm"

                    description="Presenters present."/>

gridPresenter.cfm:


<cfsetting enablecfoutputonly="true">

<cfimport taglib="/farcry/core/tags/formtools" prefix="ft" />
<cfimport taglib="/farcry/core/tags/admin/" prefix="admin" />

<!--- set up page header --->
<admin:header title="Presenters" />

<ft:objectAdmin numitems="50"
    title="Presenters"
    typename="gridPresenter"
    ColumnList="firstName,lastName,departmentCode"
    SortableColumns="firstName,lastName,departmentCode"
    lFilterFields="lastName" />

<admin:footer />

<cfsetting enablecfoutputonly="no">

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"farcry-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/farcry-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to