requestData
January 6th, 2009Code example:
Ext.extend(KreirajSjednicuFormWindow,Ext.Window,{
formSubmit: function(){
if(this.kreirajSjednicuForm.form.isValid())
{
this.kreirajSjednicuForm.form.submit({params:{
requestData: 'dodajnovusjednicu'},
failure: function() {
alert('Error');
},
success: function() {
win.close();
}
});
}
else{
Ext.Msg.alert('Poruka', 'Popunite polja.');
}
}
});
#If you have any other info about this subject , Please add it free.# |