- Add
@alias. to query and it be replaced by tableName or a alias.
// Query
User::find()->alias('example')->where(['@alias.name' => 'Antony']);
# result
SELECT `user`.* FROM `user` as `example` WHERE `example`.`name` = 'Antony'
- Use
$query->groupBy(false) to avoid GROUP BY on query.
- Fixed javascript error when any date input has been not found.
- Pjax fixes.
ActiveDataProvider created to fix a error when GROUP BY exists on query and only first page of models is returned.
- Template fixes.
functions.php added with some useful functions.
ActiveQuery fixes.
- Bug fixes