javascript - Add custom image to items on Ext.tab.Panel -
i want add customs images on navigation items on ext.tab.panel.
i know, there few images available if use iconcls
.
items: [ { title: 'home', iconcls: 'home', html: 'home screen' }, { title: 'contact', iconcls: 'user', html: 'contact screen' } ]
how can proceed? there image property or else, or have write own css classes?
css way, or use of icons included in core, there lot :)
view:
iconcls: 'mytab'
css:
.mytab { background-image: url("resources/images/mytab.png"); }
Comments
Post a Comment