datagrid
datagrid copied to clipboard
Invalid argument supplied for foreach() FilterMultiSelect
Hello.
FilterMultiSelect get me this error.
`
/**
* Get filter condition
* @return array
*/
public function getCondition()
{
$return = [$this->column => []];
foreach ($this->getValue() as $value) {
$return[$this->column][] = $value;
}
return $return;
}
File: .../ublaboo/datagrid/src/Filter/FilterMultiSelect.php:54
Options are simple array. FilterSelect works fine.
Milan `
Mee too. I fix this with setValue() with all keys
example would be appreciated! always...