$overlay{_template.html#body} $begin{content}
An Stbl (sortable table) Gizmo Object. Aka List or DataGrid.
$begin{stbl} ${% gizmo.Stbl('s', css_codes=[ ".stbl { width:70%%; }" ], status=False, col_types=['str', 'number', 'str'], columns=[ # (name, title) ('File Name', 'File Name'), ('Size (Kb)', 'Size (Kb)'), ('Last Modified', 'Last Modified'), ], column_fcodes=('%s', '%.2f', '%s'), # Python string formatting codes # For simplicity, we just inline some sample data rows_data=[ ('RA 0505.pdf', 523.9876543210, '2006-10-03'), ('RA 0302.pdf', 253.4567890, '2006-10-04'), ('DSA.pdf', 1012.34567890, '2006-10-05'), ], ) %} $end{stbl} $evoque{#stbl} $end{content}