You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.2 KiB
79 lines
2.2 KiB
11 years ago
|
/**
|
||
|
* Yii GridView widget.
|
||
|
*
|
||
|
* This is the JavaScript widget used by the yii\grid\GridView widget.
|
||
|
*
|
||
|
* @link http://www.yiiframework.com/
|
||
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
|
* @license http://www.yiiframework.com/license/
|
||
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
||
|
* @since 2.0
|
||
|
*/
|
||
|
(function ($) {
|
||
|
$.fn.yiiGridView = function (method) {
|
||
|
if (methods[method]) {
|
||
|
return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
|
||
|
} else if (typeof method === 'object' || !method) {
|
||
|
return methods.init.apply(this, arguments);
|
||
|
} else {
|
||
|
$.error('Method ' + method + ' does not exist on jQuery.yiiGridView');
|
||
|
return false;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
var defaults = {
|
||
|
};
|
||
|
|
||
|
var methods = {
|
||
|
init: function (options) {
|
||
|
return this.each(function () {
|
||
|
var $e = $(this);
|
||
|
var settings = $.extend({}, defaults, options || {});
|
||
|
$e.data('yiiGridView', {
|
||
|
settings: settings
|
||
|
});
|
||
|
});
|
||
|
},
|
||
|
|
||
|
setSelectionColumn: function (options) {
|
||
|
var $grid = $(this);
|
||
|
var data = $grid.data('yiiGridView');
|
||
|
data.selectionColumn = options.name;
|
||
|
if (!options.multiple) {
|
||
|
return;
|
||
|
}
|
||
|
$grid.on('click.yiiGridView', "input[name='" + options.checkAll + "']", function () {
|
||
|
$grid.find("input[name='" + options.name + "']:enabled").prop('checked', this.checked);
|
||
|
});
|
||
|
$grid.on('click.yiiGridView', "input[name='" + options.name + "']: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);
|
||
|
});
|
||
|
},
|
||
|
|
||
|
getSelectedRows: function () {
|
||
|
var $grid = $(this);
|
||
|
var data = $grid.data('yiiGridView');
|
||
|
var keys = [];
|
||
|
if (data.selectionColumn) {
|
||
|
$grid.find("input[name='" + data.selectionColumn + "']:checked").each(function () {
|
||
|
keys.push($(this).parent().closest('tr').data('key'));
|
||
|
});
|
||
|
}
|
||
|
return keys;
|
||
|
},
|
||
|
|
||
|
destroy: function () {
|
||
|
return this.each(function () {
|
||
|
$(window).unbind('.yiiGridView');
|
||
|
$(this).removeData('yiiGridView');
|
||
|
});
|
||
|
},
|
||
|
|
||
|
data: function() {
|
||
|
return this.data('yiiGridView');
|
||
|
}
|
||
|
};
|
||
|
})(window.jQuery);
|
||
|
|