i have the following form item
{
fieldLabel:'Username'
,id:"username"
,name:'username'
,allowBlank:false
,plugins:[Ext.ux.plugins.RemoteValidator]
,rvOptions: {
url:'/registration/member/valid-username'
}
is it possible to remove plugins later via code?
I don’t think so.
initin the plugin runs when the component is initialized, so “later in the code” it’s too late – “the damage has been done”, and the plugin has hooked into the component’s events, etc. It would be cool if I were wrong.