2015년 4월 19일 일요일

form submit


form.api ={submit: 'incidentreceipt.setOrder'};
Ext.Msg.confirm('알림' "Are you sure you want to save?", function(button, text) {
    if (button == 'yes') {
        var form = _window.getForm();
        var values = form.getValues();
       
        if (form.isValid()){
            form.submit({
                params: values,
                scope: this,
                success: function(form, action) {
                },
                failure: function(form, action) {
                }
            });
        }
        else {
              form.getFields().findBy(function(field) {
                     var activeError =  field.getActiveError();
                     if (!Ext.isEmpty(activeError ))
                     {
                        return false;
                     };
               });
        }
    }
});

댓글 없음:

댓글 쓰기