Easy Tutorial
❮ Plugins Form Combotree Jeasyui Layout Panel ❯

Introduction to jQuery EasyUI

jQuery EasyUI is a framework based on jQuery that integrates various user interface plugins.

What is jQuery EasyUI

The jQuery EasyUI framework provides everything needed to create web pages, helping you build sites easily.

Download jQuery EasyUI

You can download the desired version of jQuery EasyUI from http://www.jeasyui.com/download/index.php.

Easy Use of jQuery and HTML5

jQuery EasyUI provides easy-to-use components that enable web developers to quickly build program pages on the popular jQuery core and HTML5. These features make your application suitable for today's web. There are two methods to declare UI components:

  1. Directly declare the component in HTML.

    <div class="easyui-dialog" style="width:400px;height:200px"
        data-options="title:'My Dialog',collapsible:true,iconCls:'icon-ok',onOpen:function(){}">
            dialog content.
    </div>
    
  2. Write JavaScript code to create the component.

    <input id="cc" style="width:200px" />
    
$('#cc').combobox({
    url: ...,
    required: true,
    valueField: 'id',
    textField: 'text'
});
❮ Plugins Form Combotree Jeasyui Layout Panel ❯