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

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -