I am new to Ext Js Framework. Can any one Tell me Is there any Multi column Combo Exist in this Framework. I want a Combo box Which Displays More than One Columns When User Clicks on it.
Any Help Will be appreciated.
use 'tpl' : The template string, or Ext.XTemplate instance to use to display each item in the dropdown list
check this
In this you need to use the displayTpl
tpl: Ext.create('Ext.XTemplate',
'<tpl for=".">',
'<div class="x-boundlist-item">{firstName} {lastName} {email}</div>',
'</tpl>'
),
displayTpl: Ext.create('Ext.XTemplate',
'<tpl for=".">',
'firstName} {lastName} {email}',
'</tpl>'
)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With