最近做项目接触到了很强大的工具:硕正富文本应用套件,特此记录下学习插件的点滴:
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.待续。