skeeks / yii2-widget-simpleajaxuploader
Javascript plugin for cross-browser Ajax file uploading with progress bar support. Works in all major browsers, including IE7+, Chrome, Firefox, Safari, and Opera. No dependencies - use it with or without jQuery.
Installs: 24 781
Dependents: 3
Suggesters: 0
Security: 0
Stars: 5
Watchers: 2
Forks: 1
Language:JavaScript
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2024-10-29 04:18:51 UTC
README
Javascript plugin for cross-browser Ajax file uploading with progress bar support. Works in all major browsers, including IE7+, Chrome, Firefox, Safari, and Opera. No dependencies - use it with or without jQuery.
Installation
The preferred way to install this extension is through composer. Full api https://www.lpology.com/code/ajaxuploader/docs.php Either run
php composer.phar require --prefer-dist skeeks/yii2-widget-simpleajaxuploader "*"
or add
"skeeks/yii2-widget-simpleajaxuploader": "*"
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code by :
<?php
namespace bla\bla;
use skeeks\widget\simpleajaxuploader\Widget;
echo Widget::widget({
"clientOptions" =>
[
"name" => ""
]
});
?>
Web development has never been so fun!
www.skeeks.com