Small
The library is small and straightforward, easy to learn and easy to work with.
// creating button component
var button = new AX.Button({
id: 'hello',
text: 'Click me'
});
button.on('click', function(){
alert('Hello, World!');
});
The library is small and straightforward, easy to learn and easy to work with.
The components are very fast, even in enterprise web applications with complex screens and large datasets.
The API allows writing clean and simple code that everyone can understand and maintain.