Hello. My model is filled from the json line, where for each element any label, type, value, etc. are passed. There are also row properties (row) and column (column). And on the view, in the table for each element I create the necessary tag (depends on type), everything is ok.
Only they go all in order from top to bottom, that is, each tag is wrapped in
<tr><td>...<tr/><td/> Is it possible to somehow make it so that several td (in a loop) fall into one tr? For example, if I have 3 elements in one line
{ row=0, column=0 }, { row=0, column=1 }, { row=0, column=2 } it should work
<tr><td>...<tr/><td>...<tr/><td>...<tr/><td/>. Or is it really possible to do this without a table?