public function __construct($baseFieldName, $sortable = true, $datepicker = false)
 {
     parent::__construct($sortable);
     $this->minValueFieldName = $baseFieldName . '_min';
     $this->maxValueFieldName = $baseFieldName . '_max';
     $this->datepicker = $datepicker;
 }
 public function __construct($fields, $sortable = true)
 {
     parent::__construct($sortable);
     $this->fields = $fields;
 }