你不應該關心html。 ExtJS是一個JavaScript框架,爲您處理這些事情。 (你不應該寫標籤相關的代碼?在將來的版本中,sencha可以修改它,如果你這樣做,你將不得不重寫/更新你的代碼。)
如果你提供帶有url參數的表單,你可以調用.submit()
在您的表單上提交值。
這裏你可以找到在the documentation
一個實例文檔的例子:
Ext.create('Ext.form.Panel', {
title: 'Simple Form',
bodyPadding: 5,
width: 350,
// The form will submit an AJAX request to this URL when submitted
url: 'save-form.php',
// Fields will be arranged vertically, stretched to full width
layout: 'anchor',
defaults: {
anchor: '100%'
},
// The fields
defaultType: 'textfield',
items: [{
fieldLabel: 'First Name',
name: 'first',
allowBlank: false
},{
fieldLabel: 'Last Name',
name: 'last',
allowBlank: false
}],
// Reset and Submit buttons
buttons: [{
text: 'Reset',
handler: function() {
this.up('form').getForm().reset();
}
}, {
text: 'Submit',
formBind: true, //only enabled once the form is valid
disabled: true,
handler: function() {
var form = this.up('form').getForm();
if (form.isValid()) {
form.submit({
success: function(form, action) {
Ext.Msg.alert('Success', action.result.msg);
},
failure: function(form, action) {
Ext.Msg.alert('Failed', action.result.msg);
}
});
}
}
}],
renderTo: Ext.getBody()
});
無關,但樂於助人,前分機4.x中,我們使用new
關鍵字來創建新的組件,現在它建議使用Ext.create
。而不是Ext.extend
,我們現在使用Ext.define
並添加一個擴展參數。
Upgrade Guide
來源
2013-08-21 12:29:20
VDP
你使用了什麼extjs版本(2.x,3.x,4.x)?你的目標是什麼? – VDP
我使用版本Extjs 4 –