Quick question, when you do a save it looks as if reactor figures out if you are creating  or updaing.
if i do this


example form.task = "10,14,25,32"


    <cfloop list="#form.task#" index="thetask" delimiters=",">
        <cfset taskRecord = application.reactor.createRecord("task")>
        <cfset taskRecord.setTaskId(thetask)>
        <cfset taskRecord.setCompleted(1)>
        <cfset taskRecord.save ()>
    </cfloop>


Do you have to update all the fields? When i do the above completed gets set to 1 and every field gets set to 0.

--
Dan Vega
[EMAIL PROTECTED]
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Reactor for ColdFusion Mailing List
[email protected]
Archives at: http://www.mail-archive.com/reactor%40doughughes.net/
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

Reply via email to