>><cfif IsDefined("evaluate("form.grp_sort_#myIDX#")")

Iiiirk, you're having quotes inside quotes and # inside #... :-(
Try this instead
<cfif IsDefined('evaluate("form.grp_sort_#myIDX#")')

Anyway, I doubt this will work: evaluate will either return the value of 
form.grp_sort_#myIDX#
if it is defined, either cause an error if not. Too bad for isDefined :-(

What you really want may be more simply:
<cfif IsDefined("form.grp_sort_#myIDX#")
    AND evaluate("form.grp_sort_#myIDX#") NEQ "">

-- 
_______________________________________
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297007
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to