控件的disabled

今天用拉textField,checkbobox组件的disabled属性,我的是一个Form提交,加了此属性后,发现加这个属性的控件值传过去为空,嘿嘿,有点不理解。然后做了改动。
在发请求时,把加这个属性的值通过参数传过去。
updateForm.getForm().submit( waitTitle:"请稍等",
waitMsg:"正在提交表单数据,请稍候....",   url:"AuthServer.do?action=updateAuth",   method:"post",
params:{

updateIp:Ext.getCmp('updateIp').getValue(),
      
updateNetId:Ext.getCmp('update_net_id').getValue()        
},

success:function(form,action){
updateWin.close();
},
failure:function(form,action){
}
})

你可能感兴趣的:(.net,ext)