JsArrayString contents = rowValue.rObject.getContents();
for (int idx = 0; idx < contents.length(); idx++)
{
TableRowBuilder detail = startRow().className(style_.detailRow());
detail.startTD().endTD();
TableCellBuilder objectDetail = detail.startTD();
String content = contents.get(idx);
// ignore the first two characters of output
// ("$ value:" becomes "value:")
content = content.substring(2, content.length()).trim();