%@ page contentType="text/html; charset=GBK"%>
<%@ include file="/Frame/resources/include/include_begin_list.jspf"%>
<%@ page import="com.amarsoft.app.accounting.tools.*" %>
<%
String PG_TITLE = "功能组件列表"; // 浏览器窗口标题
PG_TITLE
%>
<%
//拿到主键参数
String termType = (String)CurPage.getParameter("TermType");
if(termType == null)termType = "";
%>
<%
//通过显示模版产生ASDataObject对象doTemp
String sTempletNo = "TermLibraryList";
ASObjectModel doTemp = new ASObjectModel(sTempletNo);
ASObjectWindow dwTemp = new ASObjectWindow(CurPage,doTemp,request);
dwTemp.Style="1"; //设置DW风格 1:Grid 2:Freeform
dwTemp.ReadOnly = "1"; //设置是否只读 1:只读 0:可写
dwTemp.setPageSize(200);
//生成HTMLObjectWindow
dwTemp.genHTMLObjectWindow(termType);
%>
<%
String sButtons[][] = {
{"true","","Button","定义新组件","定义新组件","newRecord()","","","",""},
{"true","","Button","编辑组件","编辑组件","viewAndEdit()","","","",""},
{"true","","Button","启用","启用","changeStatus(1)","","","",""},
{"true","","Button","停用","停用","changeStatus(2)","","","",""},
{"true","","Button","复制组件","复制组件","copyTerm()","","","",""}
};
%>
<%@include file="/Frame/resources/include/ui/include_list.jspf"%>
<%@ include file="/Frame/resources/include/include_end.jspf"%>