YiiBooster
YiiBooster copied to clipboard
YiiBooster
Click the button to display an alert box: Try it function myFunction() { var x=document.getElementById("#Gandu"); alert(x.innerHTML); // alert("I am an alert box!"); } ```
In version 2.x TbEditableColumn work correctly - i click by editable column, type text and click ok, and it send AJAX request to my controller. After update YiiBooster to version...
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); }...
See https://github.com/clevertech/YiiBooster/blob/master/src/actions/TbToggleAction.php#L74 $success = $model->save(false, array($attribute)); Why is validation turned off by default? I think there should either be an option to validate, or validate by default.
The file "http://yii-cms.com/protected/extensions/bootstrap/assets/js/jquery.sortable.gridview.js" is not found by the system (Error 404) although the rest of yiibooster files are working and I did installation according to the instructions. The path to...
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
I'm unsure if I should request this on the Yii Booster project or the Yii Bootstrap project, but I'm currently using Yii Booster, so here goes :) Can we have...
below is my code i m using bootbox 3.3.0 nd bootstrap 2.3.2 my jquey is 1.9 but still it is not working after include this i m simply calling bootbox.alert("hi")...
I found a typo on this js file it should be "yiiGroupGridView" instand of yiiGridView Thanks
Yii::app()->controller->widget( 'booster.widgets.TbSwitch', array( 'name' => 'toggleRoleAccess'.CHtml::encode($task).'-'.CHtml::encode($role), 'options' => array('size' => 'mini', 'state' => true, ), ) ); setting state to true does not have any effect