### 常用控制参数
**说明:**
~~~
/**
* 是否显示右键菜单,如果为flase,则右键菜单失效
*
* @type Boolean
*/
isRightMenu : true,
/**
* 右键菜单默认宽度
*/
menuWidth : 120,
/**
* 是否显示工具栏
*
* @type Boolean
*/
isToolBar : true,
/**
* 是否显示打印相关按钮/菜单
*
* @type Boolean
*/
isPrintAction : false,
/**
* 是否显示添加按钮/菜单
*
* @type Boolean
*/
isAddAction : true,
/**
* 是否显示查看按钮/菜单
*
* @type Boolean
*/
isViewAction : true,
/**
* 是否显示修改按钮/菜单
*
* @type Boolean
*/
isEditAction : true,
/**
* 是否显示删除按钮/菜单
*
* @type Boolean
*/
isDelAction : true,
/**
* 是否显示高级搜索按钮(待扩展)
*
* @type Boolean
*/
isAdvanceSearch : true,
/**
* 是否显示导出excel按钮
*
* @type Boolean
*/
isToExcel : false,
/**
* 是否显示数据操作按钮
*/
isOpButton : true,
/**
* 表单默认宽度
*/
formWidth : 800,
/**
* 表单默认宽度
*/
formHeight : 400,
/**
* 是否即时搜索
*/
imSearch : false,
/**
* 默认显示的页码
*/
newp : 1,
/**
* 是否显示完全匹配
*/
isEquSearch : true,
/**
* 表数据默认居左
*/
bodyAlign : 'left'
/**
* 表格自定制编码,如myCustomerGrid 此参数一定要保证唯一性
*/
customCode : '',
/**
* 是否显示checkbox
*/
showcheckbox : true,
~~~
**例:**
~~~
$("#contractGrid").yxgrid({
model : 'contract_contract_contract',
action : 'conPageJson',
title : '合同主表',
param : param,
leftLayout : true,
title : '合同信息',
isViewAction : false,
isEditAction : false,
isDelAction : false,
// showcheckbox : false,
isAddAction : false,
customCode : 'contractInfo',
...
...
~~~
- 架构
- 基础框架文档
- base/action(C层基类)
- protected 类定义
- __construct构造函数
- c_list
- c_index
- c_page
- c_pageJson
- c_listJson
- c_getByAjax
- c_getCountByName
- c_toAdd
- c_add
- c_init
- c_edit
- c_deletes
- c_ajaxdeletes
- c_saveBatch
- c_checkRepeat
- getDatadicts
- showDatadicts
- getDataNameByCode
- assign
- display
- view
- assignFunc
- model/base(M层基类)
- protected类定义(model)
- __construct
- find
- get_table_fields
- findAll
- findSql
- create
- delete
- findBy
- updateField
- query
- findCount
- update
- filterFunc
- filterField
- filterWithoutField
- filterCustom
- createBatch
- pageBySql
- listBySql
- pageBySqlId
- deletes
- 事务控制
- 获取对象数组
- addBatch_d
- add_d
- edit_d
- isRepeat
- 列表组件文档
- 基础表格
- 数据获取
- 表格数据显示
- 常用控制参数
- 表格右键扩展
- 表格扩展按钮
- 快速搜索
- 高级搜索(自定义视图)
- 表格注册事件
- 主从表格
- 可编辑表格
- 模块开发
- 开发案例
- 开发准则