Comparing
#47 with
#48
Revision #48 was created by
rackycz on Oct 5, 2020, 8:21:26 PM.
Search sort related column
Content
[...]
'asc' => ['table.column' => SORT_ASC],
'desc' => ['table.column' => SORT_DESC],
'label' => 'Some label',
'default' => SORT_ASC
];
// ...
if (trim($this->company_name)!=='') {
$query->andFilterWhere(['like', 'table.column', $this->company_name]);
}
}
```