All Projects â†’ dandv â†’ Meteor Webix

dandv / Meteor Webix

Licence: mit
Meteor.js - Webix UI integration

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Meteor Webix

awesome-blaze
🔥A curated list of awesome things related to Blaze
Stars: ✭ 29 (-91.47%)
Mutual labels:  meteor
Helpq
💁 an extensible real-time queue application, for mentorship @ hackathons and classrooms
Stars: ✭ 256 (-24.71%)
Mutual labels:  meteor
Workbase Server
Slack alternative, email integrated, build with Meteor
Stars: ✭ 284 (-16.47%)
Mutual labels:  meteor
TorrentsDuck
A multi users bittorrents client with a responsive web UI that quacks 🦆
Stars: ✭ 42 (-87.65%)
Mutual labels:  meteor
uglifyjs2
Meteor package that exposes options for UglifyJS2 JS minifier
Stars: ✭ 15 (-95.59%)
Mutual labels:  meteor
Android Ddp
[UNMAINTAINED] Meteor's Distributed Data Protocol (DDP) for clients on Android
Stars: ✭ 271 (-20.29%)
Mutual labels:  meteor
meteor-autoform-materialize
DEPRECATED - Meteor AutoForm Materialize templates
Stars: ✭ 48 (-85.88%)
Mutual labels:  meteor
Wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
Stars: ✭ 17,648 (+5090.59%)
Mutual labels:  meteor
meteor-method-hooks
atmospherejs.com/seba/method-hooks
Stars: ✭ 24 (-92.94%)
Mutual labels:  meteor
Drmongo
MongoDB admin app built on MeteorJs.
Stars: ✭ 283 (-16.76%)
Mutual labels:  meteor
meteor-guide-starter-react
A basic starter application based on the Meteor guide
Stars: ✭ 20 (-94.12%)
Mutual labels:  meteor
sofie-core
Sofie: The Modern TV News Studio Automation System (Server Core)
Stars: ✭ 70 (-79.41%)
Mutual labels:  meteor
Meteor Launchpad
A base Docker image for Meteor applications.
Stars: ✭ 276 (-18.82%)
Mutual labels:  meteor
spiderable-middleware
🤖 Prerendering for JavaScript powered websites. Great solution for PWAs (Progressive Web Apps), SPAs (Single Page Applications), and other websites based on top of front-end JavaScript frameworks
Stars: ✭ 29 (-91.47%)
Mutual labels:  meteor
Meteor Jade
The Jade template engine for Meteor/Blaze
Stars: ✭ 312 (-8.24%)
Mutual labels:  meteor
accounts-material-ui
Material-ui integration with std:accounts-ui
Stars: ✭ 17 (-95%)
Mutual labels:  meteor
Meteor Security
A Meteor package: Logical MongoDB security
Stars: ✭ 269 (-20.88%)
Mutual labels:  meteor
Meteor Now
Instantly deploy your Meteor apps with `meteor-now`
Stars: ✭ 339 (-0.29%)
Mutual labels:  meteor
Nosqlclient
Cross-platform and self hosted, easy to use, intuitive mongodb management tool - Formerly Mongoclient
Stars: ✭ 3,399 (+899.71%)
Mutual labels:  meteor
Glipchat
video chatroom using meteor + webrtc + react + redux
Stars: ✭ 280 (-17.65%)
Mutual labels:  meteor

Meteor.js - Webix UI integration

This is work in progress on integrating Meteor.js, the best full-stack JavaScript framework (see why) and Webix, arguably the best UI widgets library (see an extensive comparison on StackOverflow).

Stay tuned by clicking Watch/Star on GitHub.

Webix standalone admin app demo

Webix admin app demo screenshot

Meteor-Webix Demo

Usage

Get started by adding the webix:webix package and a skin. For example, to add the default skin:

meteor add webix:webix
meteor add webix:skin-flat

If you use Font Awesome icons, or have sortable tables or other UI components that need Font Awesome icons, install Font Awesome as well:

meteor add fortawesome:fontawesome

Use Meteor collections as usual and simply specify webix.proxy('meteor', Collection|Cursor) for the url and save properties of the component:

Movies = new Mongo.Collection('movies');

webix.ui({
  view: 'datatable',
  autoconfig: true,
  editable: true,
  url:  webix.proxy('meteor', Movies.find()),
  save: webix.proxy('meteor', Movies)
});

Learn more

What works

  • package tests (font loading via skins, visual check)
  • load and save data to/from reactive DataTable, List, and other widgets backed by linear data structures

Needs testing

  • paging
  • dynamic data loading
  • hierarchical widgets (Tree, TreeTable)

TODO

  • clean up and merge the disparate Webix repos
  • map nested objects onto Webix forms (#10)
  • client-side error messages on failed server operations via Collection.deny
  • review
    • Webix wrapper for Meteor/Blaze reactive templates
    • routing
  • persist order of List/DataTable elements reordered via drag-and-drop (similar to rubaxa:sortable)
  • reactive Multiview, similar to templates:tabs

Licensing

Meteor package author: Dan Dascalescu (@dandv)

Acknowledgments: the Webix team, and especially Maksim Kozhukh (@mkozhukh) - the developers of the webix-meteor-data adapter.

Webix is (C) 2013-2015 XB Software and is available under commercial and GPLv3 licenses. A license exemption for non-GPL software is being worked on.

This Webix package for Meteor is published under the MIT license.

The MIT License (MIT)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].