Jump to content

How to use a plugin within a custom component??


estrify

Recommended Posts

Hi,

I am making some tests with custom components. How can I use a plugin with them??...

i.e. I want to extend TUniEdit to use ClearButton plugin... Using a normal TUniEdit and ClientEvents it is easy, but I don't know how to make it work directly in a custom component...

 

in WebCreate the following produce ajax error:

JSConfig('plugins', ['Ext.create("Ext.ux.form.field.ClearButton", {serverSideClear: false})']);

 

TIA

Link to comment
Share on other sites

Hi,

I am making some tests with custom components. How can I use a plugin with them??...

i.e. I want to extend TUniEdit to use ClearButton plugin... Using a normal TUniEdit and ClientEvents it is easy, but I don't know how to make it work directly in a custom component...

 

in WebCreate the following produce ajax error:

JSConfig('plugins', ['Ext.create("Ext.ux.form.field.ClearButton", {serverSideClear: false})']);

 

TIA

 

Sorry... It's my fault... Simply have to use:

JSProperty('plugins', 'Ext.create("Ext.ux.form.field.ClearButton", {serverSideClear: false})');

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...