i have modified the plugin a bit to allow setting initial 'remote valid' state. for example, when loading a form from db, its not nice to show 'not verified yet' right ahead.
now, you can set 'remoteValid' property initially in field.
Code:... Ext.ux.plugins.RemoteValidator = { init:function(field) { // save original functions var isValid = field.isValid; var validate = field.validate; // apply remote validation to field Ext.apply(field, { remoteValid:!!field.remoteValid //Michael // private ,isValid:function(preventMark) { return isValid.call(this, preventMark) && this.remoteValid; } ...