Trying out the impressive new typeahead formtool. One thing I noticed, if your selection includes content items that have both approved and draft versions you will see duplicates in the select list making it difficult for content editors to decide which one to select.
One possible solution is to use a modified version of librarySelected.cfm to indicate the status of the content items. Create a copy of librarySelected.cfm into your project/plugins webskin/types and replace <cfoutput>#stobj.label#</cfoutput> with <cfif stobj.status eq "draft" and stobj.versionID neq ""> <cfoutput>#stobj.label# (draft)</cfoutput> <cfelse> <cfoutput>#stobj.label#</cfoutput> </cfif> To assist content selection. Chris. -- -- You received this message cos you are subscribed to "farcry-dev" Google group. To post, email: [email protected] To unsubscribe, email: [email protected] For more options: http://groups.google.com/group/farcry-dev -------------------------------- Follow us on Twitter: http://twitter.com/farcry
