Hi, I want to do something like the Grid Plugins Example in my GridPanel (wich is already working)
I just created the variable before the grid:
Code:
var expander = new Ext.ux.grid.RowExpander({
tpl : new Ext.Template(
'<p><b>Processos Apensados:</b> {NumProc}</p><br>'
)
});
//NumProc is one of the Grid's field
grid = new Ext.grid.GridPanel({ ...
and inserted the plugin:
Code:
height: 330,
width: 575,
plugins: expander,
But I got a js error:
"Mensagem: 'Ext.ux.grid.RowExpander' is null or not an object"
Did I do somthing wrong?
Thx
I am using Ext JS Library 3.2.1