- 浏览: 16197 次
- 性别:
- 来自: 北京
最新评论
文章列表
formPanel提交方式
Ext.MessageBox.wait('正在提数据, 请稍侯 ...', '提示');
xxxxFormPanel.getForm().submit({
timeout : 60,
success : function(form, action) {
// 业务成功
Ext.MessageBox.updateProgress(1);
Ext.MessageBox.hide();
},
failure : function(form, action) {
// 业务失败
Ext.Messa ...
页面js部分的写法
new Ext.data.Store({
proxy : new Ext.data.HttpProxy({
url : basePath + '/fundAuditAction.do'
}),
reader : new Ext.data.JsonReader({
totalProperty : 'total',
root : 'root',
successProperty : 'succeed',
fields : [...]
})
,successProperty: 'success' // 后台传输的标识。必须
...
在项目工程中,要对一张字典表的数据进行查询,以下拉框的形式在界面展示。
需要在添加记录、更新记录的时候用到(需要设置combox的初始值),实现了一下扩展。
添加时设置了value的效果
更新时设置值的效果
组件扩展:
Ext.namespace('Rvp.ux');
Rvp.ux.DictCombo = Ext.extend( Ext.form.ComboBox, {
triggerAction : 'all' // 显示所有下列数据,一定要设置属性triggerAction为all
,editable : true // 是否允许输入
,t ...