Here's an odd one. I added some fieldsets to an existing custom
datatype, reloaded the app, regenerated the scaffold, etc. Now, the
first fieldset appears twice on the edit pages; once where it should
and once again right before the save/cancel buttons. Where would I go
to change that? The properties of the datatype itself are below:
<cfcomponent name="testimonial"
extends="farcry.core.packages.types.types"
output="false"
displayname="Testimonials">
<cfproperty name="name" type="string" default="" hint="Person's Name"
ftLabel="Name"
ftFieldset="Basic" />
<cfproperty name="subject" type="string" hint="Subject"
ftLabel="Subject"
ftFieldset="Basic" />
<cfproperty name="testimonial" type="longchar" default=""
hint="Testimonial"
ftLabel="Testimonial"
ftFieldset="Basic" />
<cfproperty name="showConsumers" type="boolean" default="1"
ftFieldset="Audience"
ftlabel="Consumers" />
<cfproperty name="showRetailers" type="boolean" default="1"
ftFieldset="Audience"
ftlabel="Retailers" />
</cfcomponent>
And the new/edit pages show "Basic", "Audience", "Basic".
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---