days to give it a try before you buy! Download now. The best deals on licenses are coming soon Download now. The best deals on licenses are coming soon

WEBIX BLOG

Webix 3.4 released

Hey guys!

We are so glad to present our new Webix 3.4 update today! Hope you are still fresh and rested after the weekend and ready to test something new, because definitely we have a bunch of features to show. Here we go!

Webix 3.4 release

Webix Remote for PHP and NodeJS

Establishing communication between a client and a server can be rather a difficult task. While working with a single component it may cause little problem, but any reasonably big app becomes a mess of AJAX calls on the client side and pretty tangled code on the server side.

To make your life easier, Webix 3.4 provides a solution to call server-side code directly from JavaScript.

Grow with Webix: Real Showcase from Diego Ferruchelli

Hi guys!

Today, in the middle of June, we would like to share with you a fresh and still hot showcase directly from sunny Argentina. It was kindly provided by Diego Ferruchelli.

data analysis

 

“Curvas (Spanish for “curves”) is a tool for data analysis and business modeling intended to be used in such spheres as agricultural insurance and risk management. It was prepared as a part of my independent consulting services for a local company which was developing a new product in this field.

I was using Webix for another application, and I felt it was the natural way to go with this one, in which good user interaction and charting are key features.

Grow with Webix: Real Showcase from SFM BV company

Hey everyone!

We continue to publish real showcases of customer applications made with Webix. Today we’d like to share a new article from SFM BV about their product called XLReporting.

“We are a team of finance, accounting, and IT experts in the Netherlands. We specialize in information management, and provide solutions and services to our corporate clients for financial management, consolidation, budgeting, and reporting. Our clients vary in size from SME’s to large corporates across the world.

xlr_1_dashboard

 

Years ago we launched a very successful product called XLReporting at request of our clients, which has seen many versions and improvements ever since, and which enjoys a large installed user base. For years, the product has been a client-server solution with an Excel add-in and workbooks communicating to a back-end SQL Server instance, and it is still widely used and actively soldpurchased today.

Webix FAQ: Pivot

Hey guys!  The new FAQ article is ready. Last time we were talking about Webix licenses. The new topic is Webix Pivot.

pivot webix

 

To begin with, Pivot is a cool JavaScript widget that is perfect for making interactive table reports and pivot charts. You can easily embed it into your web page or new app. Pivot is based on Webix Tree Table JS, consequently your data will have a tree-like structure. Why Webix Pivot? Because it allows automatically organizing, summarizing and comparing complex data from database files. To get the whole idea, you may check out our online samples.

Webix 3.3 release

Hey guys!

Someone is waiting for May Day celebration, and someone is ready for our new Webix 3.3 release. So what have changed and what has been added since our last update? Webix 3.3, here we go!

Webix 3.3 release

Full support for drag-and-drop functionality on touch devices

We have added drag-n-drop support for scrollable widgets on touch screens – one of the top requested and long anticipated features. Now drag-n-drop starts on long-touch for touch screens.

Webix FAQ: Licenses

Hey everyone!

New week, new beginning. The number of our subscribers and customers is growing, and we are certainly pleased with that. 🙂 But the more customers appear, the more questions are asked. As a result, the idea of creating a series of articles considering answers on questions related to a particular topic was born. Today we’ll speak about Webix License.

Webix license

 

There are a couple of ways of how you can get our product:

  1. you can download free Trial version, to start and to try our Pro Edition, which has advanced functionality, goes under Webix Developer license and can be distributed in commercial projects. You can use Webix trial version for 1 month only.;
  2. you can download Standard Edition, which has standard functionality, goes under Open source (GNU GPLv3) and can’t be distributed in not open source projects;
  3. and finally, you can purchase any of our existing licenses, receive an email with the link, download the package and start developing.

Release Webix 3.1

Let’s say “Good bye” to the rainy weather and “Good day” to our new release of Webix 3.1! Less than 2 month passed since our last big update of Webix 3.0, and we are already ready to present the new one.

Webix-release-3-1

 

Our library is updated with new widgets – SideMenu and TreeMap. We also created a new component – Sidebar, which is not included in the package, but you can download it right now.

What we have in the programme today:

  1. TreeMap;
  2. Sidebar;
  3. Sidemenu;
  4. AutoWidth for Menus and Buttons.

Grow with Webix: Real Showcase from Rael Bauer

Hey everyone!

We continue publishing real showcases from our customers, which were made on Webix. Today we’d like to share an article about the RightNote, personal information manager program for Windows, provided by Rael Bauer.

“RightNote is an advanced personal information manager program for Windows. It allows you to store all bits and pieces of information in a single place and then you can access that information later. For example you can capture webpages, store source code snippets, JavaScript Spreadsheet, project notes etc.. all in a single place. More information can be found here: //www.bauerapps.com/rightnote/

Webix Showcase

 

We wanted to provide our users with a way to publish their knowledge bases to the web or to mobile devices, so that they could then access or present their information on these platforms.

This meant exporting the RightNote databases to a html/javascript format. We wanted to make sure that the output looked good and was also easy to use and navigate, hopefully providing some functionality similar to the desktop app. We also wanted the javascript to work straight from the file system, i.e. without requiring a server. (Many javascript libraries work fine on a server, but come to halt on filesystems).

Grow with Webix: Real Showcase from Michael Basin

Hey guys!

New week, new showcase from our customers. Today we are presenting a short, but colourful article from Michael Basin. The project, which was made on Webix, is called Blitz-Budget. So let’s start.

“I use JavaScript Pivot for mobile applications for financial accounting as a tool for generating reports. And I do it in an unusual way.

A smartphone is used as a web-server and Pivot is run on a PC as a client. Thus, users get a possibility to make reports on a desktop directly using data from the smartphone.

Blitz-Budget App made on Webix

 

Blitz-Budget for Android – is the program for accounting and control of personal finance.

Import / Export in Webix 3.0

Web apps are dominating in the modern software development. Born as stateless pieces of HTML, they have evolved to dynamic and smart applications, still bound to the browser and the HTML markup. The next step of evolution is happening just now. A web app is moving beyond the boundaries of the browser. On the one hand, we already have desktop and mobile apps which, in fact, are wrapped web apps, on the other hand, web apps learn how to interact with desktop apps.

In Webix 3.0 we have added a few new API to simplify such a client <-> desktop data interchange.

Data Export from a web app

With Webix 3.0, you have two very powerful data export commands. They are:

webix.toPNG($$("chart"))
webix.toExcel($$("datatable"));

export to png

Those commands allow exporting any Webix component to PNG or Excel. In the case of export to PNG, you can use API with any HTML content. Yes, you can export any HTML content on the page to a PNG image.

// export the whole page to an image
webix.toPNG(document.body);

1 2