3 declare(strict_types=1);
27 $factory = $DIC->ui()->factory();
29 $request = $DIC->http()->request();
32 public function getRows(
34 array $visible_column_ids,
38 ?array $additional_parameters
43 public function getTotalRowCount(?array $filter_data, ?array $additional_parameters): ?
int 49 $table = $factory->table()->data(
52 'col1' => $factory->table()->column()->text(
'Column 1')
53 ->withIsSortable(
false),
54 'col2' => $factory->table()->column()->number(
'Column 2')
55 ->withIsSortable(
false),
60 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.