Has anyone had any success using a vertical table column as a view 'el' using Backbone.js? Since tables are row-based, using a table row as the DOM container associated with the view is trivial. However, the layout I'm required to implement is vertical, so a table column would be the 'el' of my design, but table columns don't have a similar container element since table layout is horizontal.
So far, I haven't been able to successfully create child views for the table columns, which means I'm tying data to my DOM in order to retrieve and manipulate table columns. My design has gotten much more complex, which is causing me to reevaluate the original approach in the hope that there is a better way to manage this scenario through child views. Any ideas?