tSSmsSqlList.jsp 1.5 KB

123456789101112131415161718
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <t:base type="jquery,easyui,tools,DatePicker"></t:base>
  4. <div class="easyui-layout" fit="true">
  5. <div region="center" style="padding:0px;border:0px">
  6. <t:datagrid name="tSSmsSqlList" checkbox="true" fitColumns="false" title="common.businessSqlTable" actionUrl="tSSmsSqlController.do?datagrid" idField="id" fit="true" queryMode="group">
  7. <t:dgCol title="common.esId" field="id" hidden="true" queryMode="single" ></t:dgCol>
  8. <t:dgCol title="common.sqlName" width="300" query="true" field="sqlName" queryMode="single" ></t:dgCol>
  9. <t:dgCol title="common.sqlContent" width="600" query="true" field="sqlContent" queryMode="single" ></t:dgCol>
  10. <t:dgCol title="common.operate" width="200" field="opt"></t:dgCol>
  11. <t:dgDelOpt title="common.delete_2" url="tSSmsSqlController.do?doDel&id={id}" urlclass="ace_button" urlfont="fa-trash-o" />
  12. <t:dgToolBar title="common.add_2" icon="icon-add" operationCode="add" url="tSSmsSqlController.do?goAdd" funname="add"></t:dgToolBar>
  13. <t:dgToolBar title="common.edit_2" icon="icon-edit" operationCode="edit" url="tSSmsSqlController.do?goUpdate" funname="update"></t:dgToolBar>
  14. <t:dgToolBar title="common.batchDelete" icon="icon-remove" operationCode="remove" url="tSSmsSqlController.do?doBatchDel" funname="deleteALLSelect"></t:dgToolBar>
  15. <t:dgToolBar title="common.view" icon="icon-search" url="tSSmsSqlController.do?goUpdate" funname="detail"></t:dgToolBar>
  16. </t:datagrid>
  17. </div>
  18. </div>