EXT field remote validator

{
   xtype: 'textfield',
   fieldLabel: 'Field',
   allowBlank: false,
   textValid: false,
   validator: function(){
       return this.textValid;
   },
   listeners : {
     'change': function(textfield,newValue,oldValue) {
        Ext.Ajax.request({
          url: 'psc/validate',
          params: { psc: value },
          scope: textfield,
          success: function(response){
             if (response.responseText){
               this.clearInvalid();
               this.textValid = true;
             } else {
               this.markInvalid('field is not valid');
               this.textValid = false;
             }                             
          }
        });
      }       
   }

} 異步


EXT 表字段 ,異步驗證。 this

參考http://stackoverflow.com/questions/8120852/extjs4-remote-validation url

好像還有一個 ext的plugin 能夠實現這個, 具體沒找。 rem

相關文章
相關標籤/搜索