Commit 9d440ef6 by Thiago Talma

With checkbox

parent 497af804
......@@ -98,6 +98,7 @@ yii.gii = (function ($) {
var initToggleActions = function () {
$('#action-toggle :input').change(function () {
$(this).parent('label').toggleClass('active', this.checked);
$('.' + this.value, '.default-view-files table').toggle(this.checked).find('.check input').attr('disabled', !this.checked);
checkAllToggle();
});
......
......@@ -12,11 +12,11 @@ use yii\gii\CodeFile;
*/
?>
<div class="default-view-files">
<div id="action-toggle" class="btn-group btn-group-xs pull-right" data-toggle="buttons">
<div id="action-toggle" class="btn-group btn-group-xs pull-right">
<label class="btn btn-success active" title="Filter files that are created">
<input type="checkbox" value="<?= CodeFile::OP_CREATE ?>" checked> Create
</label>
<label class="btn btn-info active" title="Filter files that are unchanged.">
<label class="btn btn-default active" title="Filter files that are unchanged.">
<input type="checkbox" value="<?= CodeFile::OP_SKIP ?>" checked> Unchanged
</label>
<label class="btn btn-warning active" title="Filter files that are overwritten">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment