WEBIX JAVASCRIPT LIBRARY BLOG

UI development best practices, front-end programming tips and news to speed up your Web development.

Follow us:

Write for us: learn about our guest posts guidelines.

Webix 1.7: New Skin for Desktop and Mobile Devices

Today our team is happy to announce the release of Webix 1.7 that includes a new appealing default skin, support for multiselect on touch devices, some UI improvements and bug fixes.

A new skin looks and runs great on both desktop and mobile devices. It is styled in a flat design that will make your web apps look trendy and user-friendly.

718_image_13_01

The main colors of Webix 1.7 skin are sky blue, snow-white ( the color of background), bright green (the color of controls and selection) and dark grey. This color palette reflects the vibrant colors of spring nature that will cheer up your users. To evaluate the flat skin please check our Webix demo.

Using Webix with NodeJS

NodeJS is one of the hottest programming technologies. It allows creating fully functional web apps in a few lines of code. What is more, apps on NodeJS platform can be made completely in JavaScript. Using the same language on client and server side gives us real bonuses.

Let’s see how the client-side code based on Webix UI can be connected to a database with the help of NodeJS.

nodejs webix

Webix Gets NuGet and Bower Packages

Good news! The installation of Webix is becoming easier. From today the library can be installed with the help of NuGet or Bower dependency management tools.

Nuget

NuGet is a package manager for the Microsoft development platform. You can install Webix by executing the following command line:

nuget install Webix

If you are a user of Microsoft Visual Studio, you should run the next command from Package Manager Console:

install-package Webix

Using Handlebars Templates with Webix UI

JavaScript UI library Webix allows redefining the appearance of many elements through templating. For example, in tree view we can define the look of item through the following template:

webix.ui({
    view:"tree", data:tree_data,
    template:"{common.icon()} #value#"
});

simple template

 

Here you can see the two main components of webix templates: common helpers and property placeholders. Common helpers are predefined pieces of logic which renders some common elements (tree icon in the above case). Property placeholders are markers that will be replaced with data from related data object.
By using html tags in the template we can change the look of component in many ways.

Webix 1.6 : Full Support for Windows 8 Touch Devices and REST API

Today we are thrilled to announce a new version of Webix.

Webix 1.6 runs properly on Windows 8 touch devices and supports drag-and-drop operations on all kinds of touch devices. Version 1.6 also brings several UI improvements and enhancements in server-side integration.

win 8 DND

Windows 8

After improving the work of the library on iOS and Android mobile devices we’ve passed on to enhancement of Webix support for Windows 8 touch devices.

Now you can develop web apps that support Windows 8 touch devices and show high performance.

1 2 3 4 5 6