On Wed, Aug 20, 2008 at 6:58 PM, WJhonson@aol.com wrote:
As you add items to the table, you have to constantly move other items downwards, to maintain the alphabetical, or chronological arrangement.
I think you're not properly describing the class of problem.
If you add another row to a table, all the other rows do move down. That's good behavior.
If you add a column to a table, you have to remember to add it to all the other columns as well. That's because the table structure we have (which is simply syntactic sugar over HTML, which has a similar behavior) knows nothing about the relation between rows.
Is this what you mean?
Or are you trying to do something else?
This would be well illustrated with a real example.
-Matt