estrify Posted June 23, 2014 Posted June 23, 2014 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 Quote
estrify Posted June 23, 2014 Author Posted June 23, 2014 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})'); Quote
Administrators Farshad Mohajeri Posted June 23, 2014 Administrators Posted June 23, 2014 JSConfigPlugin('Ext.ux.form.field.ClearButton', [ 'serverSideClear',False ] ); Quote
estrify Posted June 23, 2014 Author Posted June 23, 2014 JSConfigPlugin('Ext.ux.form.field.ClearButton', [ 'serverSideClear',False ] ); Thank you very much... Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.