apollo/yii2-ajaxfilter

dev-master 2014-03-06 09:09 UTC

This package is not auto-updated.

Last update: 2024-09-10 05:23:35 UTC


README

#Ajax filter for yii2 Usage:

public function behaviors()
	{
		return [
			'ajax' => [
				'class' => AjaxFilter::className(),
				'actions' => [
					'actionName' => ['ajax'],
				],
			],
		];
	}