それは書き込み構文ですか??paramsセクションで、このフィールドを追加してサーバーに送信したいのですが、機能しません
Ext.Ajax.request({
url:'http://localhost:8084/org.servlet/url_servlet',
method:'GET',
params:{
myname:document.getElementById('firstname').value//this is the field i want to send to the servlet
} ,
success: function (response){
Ext.Msg.alert('Succesfully added ');
},
failure: function (){
Ext.Msg.alert('Error in server');
}