- 20 Nov, 2014 3 commits
-
-
Carsten Brandt authored
fixes #5683
-
Carsten Brandt authored
issue #6126
-
Tobias Munk authored
- Responsive tables. - Route is displayed by default, action is available as tooltip. - Better config table display. - PHP extensions are sorted alphabetically.
-
- 18 Nov, 2014 1 commit
-
-
Nikola Basic authored
close #6099
-
- 17 Nov, 2014 1 commit
-
-
Qiang Xue authored
-
- 16 Nov, 2014 6 commits
- 15 Nov, 2014 5 commits
-
-
Carsten Brandt authored
return value would not be a valid array when json encoded after unlink(). fixes #6065
-
Qiang Xue authored
Fixes #6049: `yii\db\Connection::getSchema()` for Oracle should return false when the table does not exist. Oracle does not support `ON UPDATE` clause.
-
wenbin1989 authored
Fix batchInsert bug in oci. default batchInsert sql is ``` insert into tableName(col1, col2, col3...) value(`col11`, `col12`,`col13`.... ),(`col21`, `col22`,`col23`.... ); ``` which is illegal in oracle db. Change it to ``` insert into tableName(col1, col2, col3...) select 'col11', 'col12', 'col13' from dual union select 'col21', 'col22', 'col23' from dual union select 'col31', 'col32', 'col33' from dual; ```
-
wenbin1989 authored
oracle db doesn't support `ON UPDATE` in FOREIGN KEY. remove `ON UPDATE` section in method `addForeignKey`.
-
wenbin1989 authored
fix oci bugs: \yii\db\oci\Schema::findColumns($table) return true when table doesn't exist When table doesn't exist, query in method `findColumns` return empty array instead of throw a exception.
-
- 14 Nov, 2014 3 commits
-
-
Carsten Brandt authored
thanks to @pana1990 close #6060
-
Qiang Xue authored
-
Serge Postrash authored
Use case: ``` echo GridView::widget([ ... 'columns' => [ ... [ 'attribute' => 'created_at', 'label' => '<span data-toggle="tooltip" class="glyphicon glyphicon-time" title="'.Yii::t('app', 'Created At').'"></span>', 'encodeLabel' => false, ... ], ```
-
- 13 Nov, 2014 1 commit
-
-
Andrei Chugunov authored
Some Annotation Typos close #6029
-
- 12 Nov, 2014 3 commits
-
-
Qiang Xue authored
Fixes #5799: `yii\bootstrap\ButtonGroup::buttons` can take all options that are supported by `yii\bootstrap\Button`
-
Alexander Makarov authored
-
Qiang Xue authored
Fixes #6018: When setting the `encode` option via `yii\widgets\ActiveRecord::errorOptions`, it works the other way around [skip ci]
-
- 11 Nov, 2014 3 commits
-
-
Klimov Paul authored
-
Qiang Xue authored
-
Klimov Paul authored
-
- 10 Nov, 2014 7 commits
- 09 Nov, 2014 1 commit
-
-
Alexander Makarov authored
Fixes #5863: Selecting all individual `yii\grid\CheckboxColumn` checkboxes in grid view wasn't resulting in "all" checkbox selected
-
- 08 Nov, 2014 1 commit
-
-
Qiang Xue authored
-
- 07 Nov, 2014 5 commits
-
-
Qiang Xue authored
-
Qiang Xue authored
Fixes #5688: Added optional `$formName` to `Model::loadMultiple()` to support customizing form name directly
-
Qiang Xue authored
Fixes #5768: When setting `data-confirm` attribute to a submit button, clicking on the button would not trigger form submission
-
Qiang Xue authored
-
Tomek Romik authored
-