19 declare(strict_types=1);
43 $factory = $DIC->ui()->factory();
45 $request = $DIC->http()->request();
48 public function getRows(
50 array $visible_column_ids,
54 ?array $additional_parameters
59 public function getTotalRowCount(?array $filter_data, ?array $additional_parameters): ?
int 65 $table = $factory->table()->data(
69 'col1' => $factory->table()->column()->text(
'Column 1')
70 ->withIsSortable(
false),
71 'col2' => $factory->table()->column()->number(
'Column 2')
72 ->withIsSortable(
false),
76 return $renderer->render($table->withRequest($request));
Both the subject and the direction need to be specified when expressing an order. ...
without_data()
description: > Example showing a data table without any data and hence no entries, which will automatically display an according message.
A simple class to express a naive range of whole positive numbers.