码迷,mamicode.com
首页 > 其他好文 > 详细

硕正控件学习记录

时间:2014-11-24 22:15:48      阅读:623      评论:0      收藏:0      [点我收藏+]

标签:des   style   ar   color   sp   for   数据   on   bs   

最近做项目接触到了很强大的工具:硕正富文本应用套件,特此记录下学习插件的点滴:

1.页面通过xml配置,xml中的table_id对应数据库的表名,col_physical_name对应表中的字段,col_type对应字段的类型。

2.页面加载时执行OnReady方法,在OnEvent方法中判断各种事件的触发。

3.页面加载类型分为TreeList和FreeForm两种,TreeList为列表,通常取AF为id,FreeForm为表单,通常取FM为id。

4.Tab标签页下的方法调用:Tab1为当前table页的id,tab_OrderData为页签的id

  var changeXML = AF.func("Tab1.tab_OrderData.GetChangedXml", "level=2");

5.xml中列的属性,col_type对应的是数据库中字段的类型,而datatype是页面验证的数据类型,通过配置datatype可自动验证数据。

6.配置下拉框数据时,edittype要写成dropdownlist,还要起一个dropdownlistid,在下方dropdownlists处配置数据源。例如:

  <input table_id="tb_serviceReport_info"  align="left" col_physical_name="ServiceId" col_type="NVarchar"  id="ServiceId" edittype="editabledroptreelist"   droplistid="Drop_ServiceId" LeftText="服务号:" width=‘2‘ nullAble="false"/>

  数据源:

  <DropLists>
    <DropList id="Drop_ServiceId" treelist="ServiceDetail.xml" DataCol="ServiceId" DisplayCol="ServiceId"
    isTreeNodeSelectAble="true" />
  </DropLists>

7.待续。

硕正控件学习记录

标签:des   style   ar   color   sp   for   数据   on   bs   

原文地址:http://www.cnblogs.com/Jackie-sky/p/4119706.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!