Yii2 extension for showLoading jQuery plugin. Provides a neat way of overlaying loading indicator over arbitrary content (e.g. during ajax calls).
Simply add extension to your composer.json:
{ "require": { "nirvana-msu/yii2-showloading": "1.0.*@dev" } }
After this just update your dependencies as usual, e.g. by running composer update
To make the plugin work you just need to register asset bundle. Either specify it as a dependency, or register directly in your view like this:
use nirvana\showloading\ShowLoadingAsset; ShowLoadingAsset::register($this);
To show / hide loading indicator, simply call showLoading()
/ hideLoading()
methods:
$('#my-content-panel-id').showLoading(); $('#my-content-panel-id').hideLoading();
Extension is released under MIT license.
Underlying jQuery plugin license:
jQuery showLoading plugin v1.0 Copyright (c) 2009 Jim Keller Context - http://www.contextllc.com Dual licensed under the MIT and GPL licenses.
Be the first person to leave a comment
Please login to leave your comment.