/** * @author Shea Frederick - http://www.vinylfox.com * @class Ext.ux.form.HtmlEditor.plugins *
A convenience function that returns a standard set of HtmlEditor buttons.
*Sample usage:
*
new Ext.FormPanel({
...
items : [{
...
xtype : "htmleditor",
plugins : Ext.ux.form.HtmlEditor.plugins()
}]
});
*
*/
Ext.ux.form.HtmlEditor.plugins = function(){
return [
new Ext.ux.form.HtmlEditor.Table()
];
};