Hi Mike - No, <nj:move> is not dependent on Javascript. Breaking it down...."NJ" is the tag library created by using CFIMPORT like so; <cfimport taglib="/farcry/farcry_core/tags/navajo/" prefix="nj"> and MOVE is the custom tag being called. It's all CF.
Have a look at "farcry_core/tags/navajo/move.cfm" this custom tag handles all the dirty work of moving nodes. It expects two URL parameters: 1. url.srcObjectId - The objectid of the source node to move from 2. url.destObjectId - The objectid of the destination node to move to You should be able to use this in your custom admin tool without much problem. There's a bit of Javascript code at the end of the file that refreshes the tree frame when the move is complete and that may be a problem for you. Ideally we shouldn't even have that in there as it seriously breaks the rules of encapsulation but alas it's there for now. Give it a look and if you have any questions give me a shout. ~tom On Thu, 21 Oct 2004 01:40:34 +1000, Mike Britton <[EMAIL PROTECTED]> wrote: > What about <nj:move> -- the original thread topic? I'm looking for a hint to a > solution here, if possible. > > Mike > > > > --- > You are currently subscribed to farcry-dev as: [EMAIL PROTECTED] > To unsubscribe send a blank email to [EMAIL PROTECTED] > Aussie Macromedia Developers: http://lists.daemon.com.au/ > --- You are currently subscribed to farcry-dev as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] Aussie Macromedia Developers: http://lists.daemon.com.au/
