private Object getValueWithWebEditorsFormat(int row, int column) {
   Object r = original.getValueAt(row, column);
   MetaProperty metaProperty = getMetaProperty(column);
   String result = WebEditors.format(this.request, metaProperty, r, null, "", true);
   if (isHtml(result)) { // this avoids that the report shows html content
     result = WebEditors.format(this.request, metaProperty, r, null, "", false);
   }
   return result;
 }
 private Object getTotal(HttpServletRequest request, Tab tab, String totalProperty) {
   Object total = tab.getTotal(totalProperty);
   return WebEditors.format(
       request, tab.getMetaProperty(totalProperty), total, new Messages(), null, true);
 }