Renders a vertically stacked dashboard table where each field of each result row is displayed as a label-value pair.
DASH — set as ReportType in def_report.
def Render(self, param1: str = "", param2: str = "", param3: str = "") -> str:
Parameters are unused. Iterates all rows and fields in data_list, rendering each non-empty field as a two-column table row: field name on the left and processed value on the right. Field names beginning with _ are hidden. The report title and optional glyph icon are shown as a header row unless the report is rendered as a widget (_Aswidget == "Y"). Returns an HTML string.
Respects self._Height and self._Width for container sizing. The first column value is wrapped in a named div element. Field names are title-cased and underscores replaced with spaces.