テキスト フィールド データをサーブレット ページに送信したい。その過程がわからない。テキストボックスとボタンのコードを下に示します。
Ext.onReady(function(){
var movie_form = new Ext.FormPanel({
renderTo: document.body,
frame: true,
title: 'Personal Information Form',
width: 250,
items: [{
xtype: 'textfield',
fieldLabel: 'Firstname',
name: 'firstname',
allowBlank: false
},{
xtype:'button',
text:'save'
}]
});
});
テキストボックスとボタンのコードです。ボタンをクリックすると、フィールドのデータがサーブレット ページに移動します。しかし、私はそれをすることはできません。誰か助けてください。サーブレット ページの名前は url_servlet です