onUpdate - landrisek/impala GitHub Wiki

IBuilder::update Update method use one argument as callback. Mock filter by NULL in select statement In case you need independent filter process in Impala\IFetch: $this->grid->table('table')     ->select('alias'=>null)     ->select('alias'=>'@annotation') Exceptions More checkboxes in one row Can be treated in Impala\IUpdate like this: /** @return array */     public function update(string $key, array $row): IBuilder {         if(false != $row[$key]['Attributes']['checked']) {             $this->myModel->update($row[$key], [$key => 0]);             $row[$row['_key']]['Attributes']['checked'] = false;         } else {             $this->myModel->update($row[$key], [$key => 1]);             $row[$key]['Attributes']['checked'] = 'checked';         }         return $row;     }