diff --git a/Grid/Column/Column.php b/Grid/Column/Column.php index db849607..b9e5b120 100644 --- a/Grid/Column/Column.php +++ b/Grid/Column/Column.php @@ -526,6 +526,14 @@ public function setData($data) public function getData() { $result = []; + + if($this->data === null) { + $this->data = [ + 'from' => null, + 'to' => null, + 'operator' => null + ]; + } $hasValue = false; if ($this->data['from'] != $this::DEFAULT_VALUE) {