Hello,
I'm trying to do something really simple, render a panel with two buttons positioned one over the other, with some blank space between. Here's the code:
Attached you'll see how it si rendered in Firefox and, even worse, in IE6. No Firebug errors are thrown.Code:var panelBotones = new Ext.Panel({ layout: 'absolute', frame: true, width: 88, height: 350, items:[ { xtype: 'button', x: 15, y: 10, text: 'Agregar ->' },{ xtype: 'button', x: 15, y: 200, text: '<- Eliminar' } ] });
I think this must be reaaaally simple, but i've looked through all the examples and can't see anything wrong with my code!
Any hint?
Thanks a lot!