An open API service indexing awesome lists of open source software.

https://github.com/quiqqer/qui

QUIQQER-UI is a modular user interface component framework written in JavaScript
https://github.com/quiqqer/qui

javasc mootools ui ui-components

Last synced: 13 days ago
JSON representation

QUIQQER-UI is a modular user interface component framework written in JavaScript

Awesome Lists containing this project

README

        

# QUI

Copyright www.pcsg.de

www.pcsg.de
www.quiqqer.com

Licence MIT

## About QUIQQER

QUIQQER-UI is a modular user interface component framework written in JavaScript from www.pcsg.de

If you search a documentation, please look at http://doc.quiqqer.com/qui/doc/.
QUIQQER-UI or QUI are mainly used at QUIQQER

## Installation

### Installation via composer

Please add to your *composer.json*

```javascript
{
"require" : {
"quiqqer/qui" : "dev-dev"
},

"repositories": [{
"type": "composer",
"url": "http://update.quiqqer.com/"
}]
}
```

```bash
php composer.phar install
```

If you dont use MooTools, please place MooTools and moofx before requirejs:

``` html

```

### Installation via bower

``` bash
bower install http://dev.quiqqer.com:3000/quiqqer/qui.git
```

``` html

```

### Installation via nodejs

``` bash
npm install -S "git+http://dev.quiqqer.com:3000/quiqqer/qui.git"
```

``` html

```

## Usage example

```javascript

require([

'qui/controls/buttons/Button'

], function(QUIButton)
{
new QUIButton({
text : 'my button',
events :
{
onClick : function() {
alert( 1 );
}
}
}).inject( document.body );

});

```

You can find some examples at:
http://doc.quiqqer.com/qui/doc/

## Complete example

```html





Insert title here



```

## Thanks

Parts of QUI are free open-source software and not from us.
We thank all for the nice work.

- MooTools ( http://mootools.net/ )
- requirejs ( requirejs.org/ )
- AMD css! plugin curl.js ( https://github.com/cujojs/curl )
- QUIQQER / QUI Font: http://fontfabric.com/multicolore-free-fonts/

An additional thanks to:

- Composer ( http://getcomposer.org )
- Bower ( http://bower.io )
- NodeJS ( http://nodejs.org/ )

Last but not least, the QUIQQER UI Idea based on MochaUI.
We decided to reimplement MochaUI idea, with AMD definition and create more controls.

Thanks for all the nice lines of code.
If we forget somebody, please not hesitate and write us an email.

Henning from QUIQQER