form.setValues({
name: value;
})but, its not sending data or we can say that not setting the value to be sent.Please, guide me how can I solve this issue.
Thank you.
home / developersection / forums / how to add data into the post method of a form in extjs?
form.setValues({
name: value;
})but, its not sending data or we can say that not setting the value to be sent.
Tarun Kumar
19-May-2016this.myWindow.get(0).getForm().submit({I hope it will be helpful for you.url : 'path_for_action',
params : {name : value},
success : function(form, action) {
// do your stuff here
},
failure : function(form, action) {
// do your stuff here
}
}