Qiang Xue
12 years ago
6 changed files with 163 additions and 172 deletions
@ -0,0 +1,78 @@ |
|||||||
|
/** |
||||||
|
* 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); |
||||||
|
|
@ -0,0 +1,26 @@ |
|||||||
|
<?php |
||||||
|
/** |
||||||
|
* @link http://www.yiiframework.com/ |
||||||
|
* @copyright Copyright (c) 2008 Yii Software LLC |
||||||
|
* @license http://www.yiiframework.com/license/ |
||||||
|
*/ |
||||||
|
|
||||||
|
namespace yii\widgets\grid; |
||||||
|
|
||||||
|
use yii\web\AssetBundle; |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
* @author Qiang Xue <qiang.xue@gmail.com> |
||||||
|
* @since 2.0 |
||||||
|
*/ |
||||||
|
class GridViewAsset extends AssetBundle |
||||||
|
{ |
||||||
|
public $sourcePath = '@yii/assets'; |
||||||
|
public $js = array( |
||||||
|
'yii.gridView.js', |
||||||
|
); |
||||||
|
public $depends = array( |
||||||
|
'yii\web\YiiAsset', |
||||||
|
); |
||||||
|
} |
Loading…
Reference in new issue