1 Attachment(s)
I would add a textfield to the column header of a Ext.grid.Panel
hello all,
I'm making a simple page with a Grid like this http://docs.sencha.com/ext-js/4-1/#!/example/grid/grid-plugins.html
I would like to add inside the column header a textbox (or more generally an object that is not simply "text").
It should look like this image: Attachment 41585
Could anyone help me?
Thank you
|
Add html text field in the column definition
You can try adding html text field to the column text as below:
Code:
columns: [{
text: 'Name <input type=text/>',
dataIndex: 'name'
}