EasyUIEx Use Step

With the use of easy.jquery.edatagrid.js instead ofjquery.edatagrid.js, easyUIEx of edatagrid performance and logic optimization and provides additional functionality.

<!-- EasyUI CSS -->
<link rel="stylesheet" type="text/css" href="easyui/themes/bootstrap/easyui.css" id="themeLink">
<link rel="stylesheet" type="text/css" href="easyui/themes/icon.css">

<!-- EasyUI JS & Extension JS...-->
<script type="text/javascript" src="easyui/jquery.min.js"></script>
<script type="text/javascript" src="easyui/jquery.easyui.min.js"></script>
<script type="text/javascript" src="easyui/locale/easyui-lang-zh_CN.js"></script>

<!-- **EasyUIEx** -->
<link rel="stylesheet" type="text/css" href="easyuiex/css/easyuiex.css">
<script type="text/javascript" src="easyuiex/easy.easyuiex.min-2.2.3.js"></script>
<script type="text/javascript" src="easyuiex/easy.easyuiex-validate.js"></script>
<!-- EasyUIEx 'easy.jquery.edatagrid.js' instead of 'jquery.edatagrid.js' -->
<script type="text/javascript" src="easyuiex/easy.jquery.edatagrid.js"></script>
<!-- Language file -->
<script type="text/javascript" src="easyuiex/lang/easy.easyuiex-lang-zh_CN.js"></script> 

uiEx is the default namespace name EasyUIEx of. EasyUIEx API for DOM operation in extended function with selector selectors are supported calls in two ways.

*Note: Please set id attribute for dom element. *

  /**
   * alert
   * 
   * @param msg Message Content
   * @param type Message Icon Type: error, info, question, warning
   * @param callback Callback
   */
  uiEx.alert(msg, type, callback);

  /**
   * confirm
   * 
   * @param msg Message Content
   * @param callback Callback
   */
  uiEx.confirm(msg, callback);

  /**
   * prompt
   * 
   * @param msg 消Message Content
   * @param callback Callback
   */
  uiEx.prompt(msg, callback);

  /**
   * msg
   * 
   * @param msg Message Content
   * @param position topLeft, topCenter, topRight, centerLeft, center, centerRight, bottomLeft, bottomCenter, bottomRight; Default is bottomRight
   * @param params msg The message box parameters
   */
  uiEx.msg(msg, position, params);
/**
 * The control variable uiEx of transfer to first realize that its library
 * @return Object reference uiEx
 */
uiEx.noConflict();

/*
 * The parentId type tree generates a transform function that is called in the loadFilter function of the tree component
 */
loadFilter:function(rows){
    uiEx.convert(rows);
}