mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-20 00:20:44 +08:00
fixes #2559
This commit is contained in:
@@ -49,6 +49,7 @@ Yii Framework 2 Change Log
|
||||
- Bug #2502: Unclear error message when `$_SERVER['DOCUMENT_ROOT']` is empty (samdark)
|
||||
- Bug #2519: MessageSource removed translation messages when event handler was bound to `missingTranslation`-event (cebe)
|
||||
- Bug #2527: Source language for `app` message category was always `en` no matter which application `sourceLanguage` was used (samdark)
|
||||
- Bug #2559: Going back on browser history breaks GridView filtering with `Pjax` (tonydspaniard)
|
||||
- Bug: Fixed `Call to a member function registerAssetFiles() on a non-object` in case of wrong `sourcePath` for an asset bundle (samdark)
|
||||
- Bug: Fixed incorrect event name for `yii\jui\Spinner` (samdark)
|
||||
- Bug: Json::encode() did not handle objects that implement JsonSerializable interface correctly (cebe)
|
||||
|
||||
@@ -26,17 +26,17 @@
|
||||
filterSelector: undefined
|
||||
};
|
||||
|
||||
var gridData = {};
|
||||
|
||||
var methods = {
|
||||
init: function (options) {
|
||||
return this.each(function () {
|
||||
var $e = $(this);
|
||||
var settings = $.extend({}, defaults, options || {});
|
||||
$e.data('yiiGridView', {
|
||||
settings: settings
|
||||
});
|
||||
gridData.settings = settings;
|
||||
|
||||
var enterPressed = false;
|
||||
$(settings.filterSelector).on('change.yiiGridView keydown.yiiGridView', function (event) {
|
||||
$(document).on('change.yiiGridView keydown.yiiGridView', settings.filterSelector, function (event) {
|
||||
if (event.type === 'keydown') {
|
||||
if (event.keyCode !== 13) {
|
||||
return; // only react to enter key
|
||||
@@ -60,7 +60,7 @@
|
||||
|
||||
applyFilter: function () {
|
||||
var $grid = $(this);
|
||||
var settings = $grid.data('yiiGridView').settings;
|
||||
var settings = gridData.settings;
|
||||
var data = {};
|
||||
$.each($(settings.filterSelector).serializeArray(), function () {
|
||||
data[this.name] = this.value;
|
||||
@@ -85,15 +85,16 @@
|
||||
|
||||
setSelectionColumn: function (options) {
|
||||
var $grid = $(this);
|
||||
var data = $grid.data('yiiGridView');
|
||||
data.selectionColumn = options.name;
|
||||
var id = $(this).prop('id');
|
||||
gridData.selectionColumn = options.name;
|
||||
if (!options.multiple) {
|
||||
return;
|
||||
}
|
||||
$grid.on('click.yiiGridView', "input[name='" + options.checkAll + "']", function () {
|
||||
var inputs = "#" + id + " input[name='" + options.checkAll + "']";
|
||||
$(document).off('click.yiiGridView', inputs ).on('click.yiiGridView', inputs, function () {
|
||||
$grid.find("input[name='" + options.name + "']:enabled").prop('checked', this.checked);
|
||||
});
|
||||
$grid.on('click.yiiGridView', "input[name='" + options.name + "']:enabled", function () {
|
||||
$(document).off('click.yiiGridView', inputs + ":enabled").on('click.yiiGridView', inputs + ":enabled", function () {
|
||||
var all = $grid.find("input[name='" + options.name + "']").length == $grid.find("input[name='" + options.name + "']:checked").length;
|
||||
$grid.find("input[name='" + options.checkAll + "']").prop('checked', all);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user