- 方法
- getParentData()
- setReadOnly(readOnly)
- setItemsReadOnly(readOnly)
- setValues(values,commitChange)
- getValue(fieldName):String | Object
- getFields(fieldName) Ext.util.MixedCollection | Field
- fieldReadOnly(readOnly,fieldName)
- fieldVisible(visible,fieldName)
- fieldHide(fieldName)
- fieldShow(fieldName)
- getButton(btnName):Ext.button.Button
- clickButton(btnName)
- getChanges():Ext.util.MixedCollection
- reload()
- commitChanges(fieldName)
方法
getParentData()
获得父功能数据
参数说明 无
返回数据说明:Object 父功能的数据
setReadOnly(readOnly)
设置表单是否只读
- 参数说明
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
readOnly | Boolean | 是 | 无 | true只读,false不只读 |
- 返回数据说明:无
setItemsReadOnly(readOnly)
设置表单子功能是否只读
- 参数说明
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
readOnly | Boolean | 是 | 无 | true只读,false不只读 |
- 返回数据说明:无
setValues(values,commitChange)
设置表单的数据
- 参数说明
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
values | Object | 是 | 无 | 字段的键值对对象 |
commitChange | Boolean | 否 | false | true提交修改,false不提交修改 |
- 返回数据说明:无
getValue(fieldName):String | Object
获得表单的数据
- 参数说明
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
fieldName | String | 否 | 无 | 表单字段的code值 |
- 返回数据说明:String | Object 如果传fieldName返回的就是该字段对应的值,否则返回表单全部的值
getFields(fieldName) Ext.util.MixedCollection | Field
获得表单字段对象
- 参数说明
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
fieldName | String | 否 | 无 | 表单字段的code值 |
- 返回数据说明:Ext.util.MixedCollection | Field 不传fieldName返回Ext.util.MixedCollection(表单下的组件集合),否则返回该字段的对象
fieldReadOnly(readOnly,fieldName)
设置表单字段只读
- 参数说明
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
readOnly | Boolean | 是 | 无 | true只读,false不只读 |
fieldName | String/Array | 是 | 无 | 表单字段的code值/ 表单字段的code值数组 |
- 返回数据说明:无
fieldVisible(visible,fieldName)
设置表单字段显隐
- 参数说明
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
visible | Boolean | 是 | 无 | true显示,false隐藏 |
fieldName | String/Array | 是 | 无 | 表单字段的code值/ 表单字段的code值数组 |
- 返回数据说明:无
fieldHide(fieldName)
设置表单字段隐藏
- 参数说明
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
fieldName | String/Array | 是 | 无 | 表单字段的code值/ 表单字段的code值数组 |
- 返回数据说明:无
fieldShow(fieldName)
设置表单字段显示
- 参数说明
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
fieldName | String/Array | 是 | 无 | 表单字段的code值/ 表单字段的code值数组 |
- 返回数据说明:无
getButton(btnName):Ext.button.Button
获得表单的按钮
- 参数说明
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
btnName | String | 是 | 无 | 按钮的编码 |
- 返回数据说明:Ext.button.Button
clickButton(btnName)
触发表单按钮的点击事件
- 参数说明
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
btnName | String | 是 | 无 | 按钮的编码 |
- 返回数据说明:无
getChanges():Ext.util.MixedCollection
获得改变的数据
参数说明:无
返回数据说明:Ext.util.MixedCollection
reload()
刷新表单数据
参数说明:无
返回数据说明:无
commitChanges(fieldName)
提交修改的数据
- 参数说明
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
fieldName | String | 是 | 无 | 表单字段的code值,不传则提交所有的 |
- 返回数据说明:无
最后编辑: 庞峰 文档更新时间: 2023-04-26 08:43 作者:庞峰