Hi John,
You should programmatically create new items to get a needed structure. This can be based on template, for example:
precodevar row = ['<tr>',
'<td>',
' <div class="cell-wrapper">',
' <div data-role="appery_label">',
' Label',
' </div>',
' </div>',
'</td>',
'<td>',
' <div class="cell-wrapper">',
' <div data-role="appery_label">',
' Label',
' </div>',
' </div>',
'</td>',
'</tr>'].join("");
$( row ).appendTo( Appery("your_mobilegrid_component_name").find("tbody") ).trigger( "create" );/code/pre
Note the absence of CSS-classes for the row and table cells. This may cause a discrepancy in appearance. Add the needed CSS-classes for the rows, cells, and built-in components.
. trigger ("create") - is needed to initialize jQueryMobile components used within the created cells.