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.
form.setValues({
name: value;
})but, its not sending data or we can say that not setting the value to be sent.
this.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
}
}