From: Derek F. <fo...@hu...> - 2002-08-28 09:37:02
|
I have a parent node which has a whole bunch of children. Each child has a number of sub-nodes, and can be quite large. I want to change the order of the children under the parent node. That is, this: <parent> <child>1</child> <child>2</child> <child>3</child> </parent> might become this: <parent> <child>2</child> <child>1</child> <child>3</child> </parent> What's the most efficient way to do that? I'm using TclDOM and ActiveTcl-8.3.4.3 on both Linux and Windows. -- The past: Smart users in front of dumb terminals |