w2ui

WebJar for w2ui

License

License

MIT
Categories

Categories

Github Development Tools Version Controls
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

github-com-vitmalina-w2ui
Last Version

Last Version

1.4.3
Release Date

Release Date

Type

Type

jar
Description

Description

w2ui
WebJar for w2ui
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/vitmalina/w2ui

Download github-com-vitmalina-w2ui

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/github-com-vitmalina-w2ui/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>github-com-vitmalina-w2ui</artifactId>
    <version>1.4.3</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/github-com-vitmalina-w2ui/
implementation 'org.webjars.npm:github-com-vitmalina-w2ui:1.4.3'
// https://jarcasting.com/artifacts/org.webjars.npm/github-com-vitmalina-w2ui/
implementation ("org.webjars.npm:github-com-vitmalina-w2ui:1.4.3")
'org.webjars.npm:github-com-vitmalina-w2ui:jar:1.4.3'
<dependency org="org.webjars.npm" name="github-com-vitmalina-w2ui" rev="1.4.3">
  <artifact name="github-com-vitmalina-w2ui" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='github-com-vitmalina-w2ui', version='1.4.3')
)
libraryDependencies += "org.webjars.npm" % "github-com-vitmalina-w2ui" % "1.4.3"
[org.webjars.npm/github-com-vitmalina-w2ui "1.4.3"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

W2UI 1.5 - MIT License

w2ui is a modern and intuitive JavaScript UI library for building rich data-driven web applications. The library has a small footprint and requires only jQuery (1.9+) as a dependency.

The library implements the following highly usable widgets:

The complete library is only 69Kb (minified & gzipped)

Who is Using It

List of projects that use w2ui!

If you're using w2ui, I'd love to hear about it, please email to [email protected] the name of your project and a link to a public website or demo, and I will add it to the list.

Quick Start

Current stable version is 1.4. Current development version is 1.5.rc1.

You can:

bower install w2ui
  • or install using npm:
npm install w2ui

To start using the library you need to include into your page:

  • w2ui-1.4.js (or w2ui-1.4.min.js)
  • w2ui-1.4.css (or w2ui-1.4.min.css)

All the widgets and their css classes are defined inside of these two files. There is no image dependencies, some images are embedded into CSS file.

There is no requirement for a server side language. Node, Java, PHP, ASP, Perl or .NET all will work, as long as you can return JSON format from the server (or write a converter into JSON format on the client). Some server side example implementations can be found here.

Getting Started Guide

Documentation & Demos

You can find documentation and demos here:

Bug Tracking

Have a bug or a feature request? Please open an issue here https://github.com/vitmalina/w2ui/issues. Please make sure that the same issue was not previously submitted by someone else.

Building

I have switched to Grunt as a build tool. You will find Gruntfile.js in the root. You still can build with ANT if you are more comfortable with it. Both processes will produces same w2ui.js and w2ui.css files. Grunt has a few more tasks, such as watch, to auto compiles less and js files as you develop. Both tools will do the following:

  • Compile LESS files
  • Concatenate and minify CSS files
  • Concatenate, uglify and minify JS files

To use ANT, you will need to install NodeJS and NPM, then run the following command to install dependencies

sudo npm install less -g
sudo npm install clean-css -g
sudo npm install uglify-js@1 -g

To use Grunt, you will still need to install NodeJS and NPM, then run npm install that will install all dependencies as they are described in package.json file.

npm install

File Structure

- dist           - compiled JS and CSS files
- src            - source JS files
  - kickstart    - copy of another project used with the demos (not part of w2ui itself)
  - less         - LESS files (source for css)
- demos          - all demos, same as on the website
- libs           - auxiliary libraries (jquery, codemirror, etc.) used in the demos (not part of w2ui itself)
- server         - example implementations for a server implementation communicating with w2ui instances
- test           - feature testing files
- qa             - some qunit test

Contributing

Your contributions are welcome. However, few things you need to know before contribution:

  1. Please check out latest code before changing anything. It is harder to merge if your changes will not merge clean.
  2. If you are changing JS files - do all changes in /src folder
  3. If you are changing CSS files - do all changes in LESS in /src/less/src
  4. If you want to help with unit test - do all changes in /qa
  5. If you want to change documentation - do all changes in /docs
  6. If you want to add demos - do all changes in /demos

Versions

Version
1.4.3