Skip to content

A powerful, simple and flexible javascript framework

Notifications You must be signed in to change notification settings

terry-zhong/jslet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This file is intended to help you get started with the Jslet framework.

What is Jslet?

Jslet is an open source JavaScript framework. Features:

  1. Jslet is model-based, it means you can write less code to complete advanced features, for example:
    
    a. Define a dataset with three fields:
    var dsTest = jslet.data.createDataset('test', [{name: 'name', label: 'Name', type: 'S'}, {name: 'birthday', label: 'Birthday', type: 'D', displayFormat: 'yyyy-MM-dd'}, {name: 'salary', label: 'Salary',type: 'N', scale: 2}]);
    dsTest.appendRecord();
    b. Bind the dataset to a jslet control: DBTable
    <div data-jslet="type: 'DBTable', dataset: 'test', editable: true"></div>
    c. That's all, you get an editable table with three columns.
    		

    Live Example

  2. Jslet is a high performance framework, you can load unlimited records to Jslet Controls;

  3. Jslet is a pure JavaScript framework, it can connect any web server, like .NET, J2EE and so on;

  4. Jslet can run in all of major browser, like IE10+, Chrome, Firefox, Sarari, Opera;

  5. Jslet supports UI theme and localization.

For more detail features, please run demo examples or visit http://jslet.github.io/jslet/;

License: MIT

About

A powerful, simple and flexible javascript framework

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published