0
這是什麼網址:'save-form.php'?這是點擊保存按鈕後輸入數據將要保存的網址嗎?我沒有收到錯誤,但數據沒有保存。 VAR簡單=新Ext.FormPanel({ labelWidth:75, URL: '保存-form.php的', 幀:真, 標題: '簡單的表單', bodyStyle: '填充:5px的5像素0', 寬度:350, 默認:{寬度:230}, DefaultType的: '文本字段',保存表格(代碼EXTJS)
items: [{
fieldLabel: 'First Name',
name: 'first',
allowBlank:false
},{
fieldLabel: 'Last Name',
name: 'last'
}],
buttons: [{
text: 'Save'
},{
text: 'Cancel'
}]
});
simple.render(document.body);
});