Langsung ke konten utama

Form post submit tanpa ajax request

if(form_berkas.getForm().isValid()){
 form_berkas.getForm().submit({
  method:'POST', 
  waitTitle:'Connecting', 
  waitMsg:'Sending data...',      
  success:function(form, action){
   obj = Ext.JSON.decode(action.response.responseText); 
   Ext.Msg.alert('Information!', obj.errors);
   dialog_berkas.close();
  },
  failure:function(form, action){
   
   if(action.failureType == 'server')
   {              
    obj = Ext.JSON.decode(action.response.responseText); 
    Ext.Msg.alert('Information!', obj.errors); 
   }else
   { 
    Ext.Msg.alert('Warning!', 'Authentication server is unreachable : ' + action.response.responseText); 
   }  
  }    

 });      
 
} 

Komentar

Popular Posts

Extjs html class render

Ext.select('.datepicker').each(function(el){ new Ext.form.DateField({ allowBlank : true, renderTo: el, format:'m-d-Y', editable:false, width:140, fieldCls : 'tanggal x-form-field x-form-text x-trigger-noedit', }); }); Ext.select('.note').each(function(el){ new Ext.form.field.TextArea({ allowBlank : false, renderTo: el, grow : true, hideLabel : true, fieldCls : 'pesan x-form-field x-form-text x-trigger-noedit', }); });