vercotux
vercotux
The cause is here: https://github.com/clevertech/YiiBooster/blob/master/src/widgets/TbFormInputElement.php#L158 'widgetOptions' and 'label' should be separate strings, yet they are concatinated into one
The caret in a dropdown seems to be hardcoded. It would be very nice if it was optional.
Within a form a should reset all fields, but leaves Select2's untouched. This piece of code solves the problem: ``` $("form button[type=reset]").on("click",function(){ if (form = $(this).closest("form")) { $(".select2-container",form).select2("data", null); }...
TbNavbar is always (regardless of $collapse property) rendered with "collapse navbar-collapse" classes, which causes its content to disappear on small resolutions when $collapse is set to _false_. See: https://github.com/clevertech/YiiBooster/blob/master/src/widgets/TbNavbar.php#L161
This is a feature request to add the ability to select the transaction isolation level inside the _transactions()_ method. Currently only the default isolation level is possible when specifying transactions...
I cannot even count how many times I've encountered this issue. I want to call `SomeRecord::findAll($pks)` where `$pks` is an array of primary keys. However, I just want to pass...
When declaring a 'via' (*not* 'viaTable') relation the respsective behaviors of `link()` vs `unlink()` are a bit inconsistent. `link()` will trigger events and use behaviors on the junction model provided...
In [Form](https://github.com/kartik-v/yii2-builder/blob/master/Form.php) Builder, when [rendering sub-attributes](https://github.com/kartik-v/yii2-builder/blob/f6236484c753059935dcd1487bb725fec8f9823c/Form.php#L261), allow for greater control over labels. * Allow to completely disable labels. Currently even when we set the `'label'` setting to `false`/`null`/`''` the label...
Codeception's [Yii2 Module](http://codeception.com/docs/modules/Yii2) is works well with the default [yii2-swiftmailer](https://github.com/yiisoft/yii2-swiftmailer), but cannot be used with yii2-sparkpost. It is currently impossible to run the tests inside [yii2-app-advanced](https://github.com/yiisoft/yii2-app-advanced) if we switch to...
In order to be able to dynamically specify the time on request, instead of every time the config file is loaded.