I'm trying to make a gridpanel with rowexpander. I loaded the rowexpander.js file as javascript at resources. this is me code in the override function:
Ext.define('login.view.override.gridpanelAllUsers', {
override: 'login.view.gridpanelAllUsers',
plugins: [{
ptype: 'rowexpander',
rowBodyTpl : new Ext.XTemplate(
'<tpl>',
'<p>this is a test.</p>',
'</tpl>'
)
}]
});
anyone knows what i'm doing wrong?
thanks in advance.