convert this cfscript back to tag?

2009-12-10 Thread Glyn Jackson

Hi all, 

could someone convert this cfscript back to tag?


for(i=1;i lte listlen(#form.whatToUpdate#,,);i++){
  tempVal = #listgetat(form.whatToUpdate,i,,)#;
  form.ID = #tempVal#; //Option ID
  form.newRank = form[rank_  #tempVal#];
  
}


thanks 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329037
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: convert this cfscript back to tag?

2009-12-10 Thread DURETTE, STEVEN J (ATTASIAIT)

cfloop list=#form.whatToUpdate# delimiter=, index=Variables.i
cfset Variables.tempVal = Variables.i /
cfset form.id = Variables.i /
cfset form.newRank = form[rank_  Variables.tempVal] /
/cfloop

I think that's right...

-Original Message-
From: Glyn Jackson [mailto:glyn.jack...@newebia.co.uk] 
Sent: Thursday, December 10, 2009 9:43 AM
To: cf-talk
Subject: convert this cfscript back to tag?


Hi all, 

could someone convert this cfscript back to tag?


for(i=1;i lte listlen(#form.whatToUpdate#,,);i++){
  tempVal = #listgetat(form.whatToUpdate,i,,)#;
  form.ID = #tempVal#; //Option ID
  form.newRank = form[rank_  #tempVal#];
  
}


thanks 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329040
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: convert this cfscript back to tag?

2009-12-10 Thread Steve Bryant

cfloop list=#form.whatToUpdate# index=tempVal
cfset Form.ID = tempVal!--- Option ID ---
cfset Form.newRank = Form[rank_#tempVal#]
/cfloop



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329043
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: convert this cfscript back to tag?

2009-12-10 Thread s. isaac dealey

cfloop index=i from=1 to=#listlen(form.whattoUpdate)#
  cfset tempVal = listgetat(form.whatToUpdate,i,,) /
  cfset form.ID = tempVal /
  cfset form.newRank = form[rank_  tempVal] /
/cfloop

-- 
s. isaac dealey :: AutLabs 
Creating meaningful employment for people with Autism 
http://www.autlabs.com 
ph: 817.385.0301

http://onTap.riaforge.org/blog



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329046
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: convert this cfscript back to tag?

2009-12-10 Thread Dave Phillips

Glyn,

cfloop from=1 to=#listLen(form.whatToUpdate)# index=i
   cfset tempVal = listGetAt(form.whatToUpdate,i) 
   cfset form.ID = tempval !--- Option ID ---
   cfset form.newRank = form[rank_  tempVal] 
/cfloop

Hope this helps!

Dave Phillips
-Original Message-
From: Glyn Jackson [mailto:glyn.jack...@newebia.co.uk] 
Sent: Thursday, December 10, 2009 8:43 AM
To: cf-talk
Subject: convert this cfscript back to tag?


Hi all, 

could someone convert this cfscript back to tag?


for(i=1;i lte listlen(#form.whatToUpdate#,,);i++){
  tempVal = #listgetat(form.whatToUpdate,i,,)#;
  form.ID = #tempVal#; //Option ID
  form.newRank = form[rank_  #tempVal#];
  
}


thanks 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329044
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: convert this cfscript back to tag?

2009-12-10 Thread Mark Kruger

Ok... But why? Other than the pound signs it seems fine to me... Except that
form.ID will always be the last item in the list once you are done with the
loop.

cfloop list=#form.whattoupdate#  index=tempval

cfset form.id = tempval/
cfset form.newRank = form[rank_  tempval]/

/cfloop 


Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: Glyn Jackson [mailto:glyn.jack...@newebia.co.uk] 
Sent: Thursday, December 10, 2009 8:43 AM
To: cf-talk
Subject: convert this cfscript back to tag?


Hi all, 

could someone convert this cfscript back to tag?


for(i=1;i lte listlen(#form.whatToUpdate#,,);i++){
  tempVal = #listgetat(form.whatToUpdate,i,,)#;
  form.ID = #tempVal#; //Option ID
  form.newRank = form[rank_  #tempVal#];
  
}


thanks 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329048
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


re: convert this cfscript back to tag?

2009-12-10 Thread Jason Fisher

cfloop list=#form.whatToUpdate# index=i
cfset form.ID = i /
cfset form.newRank = form[rank_  i ] /
/cfloop





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329060
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4