I'm using the DomHelper to create new dom nodes, which seems to work fine for everything except tables. Normally, I would create a table node, then a table body node, then create each td nodes which append to the right tr nodes, which append back to the table body node. I guess the builder returns a table node no matter if you pass in a "table", "tablebody" or "tr" tag.. or at least thats the way it seems...
Is there a correct way to build tables using your domBuilder? I'm guessing I could use a template but I don't understand how to append different cells and rows to the table based on a data set..