Jump to content

Recommended Posts

Posted

Hi,

 

The simplest case, you can do so:

 

1. UnimTabPanel1 ->  ClientEvents -> UniEvents [Ext.tab.Panel] add beforeInit fn:

function beforeInit(sender, config)
{
  config.tabBarPosition = 'bottom';  
}

2. UnimTabSheet1 ->  ClientEvents -> UniEvents [Ext.Container] add beforeInit fn:

function beforeInit(sender, config)
{
  config.iconCls = 'home';
}

3. UnimTabSheet2 ->  ClientEvents -> UniEvents [Ext.Container] add beforeInit fn:

function beforeInit(sender, config)
{
  config.iconCls = 'settings';
}

4. ...

 

5. Here are some list of available iconCls:

action
add
arrow_up
arrow_right
arrow_down
arrow_left
bookmarks
compose
delete
download
favorites
info
more
refresh
reply
search
settings
star
team
time
trash
user

Try..

 

Best regards.

  • 4 years later...
Posted
6 hours ago, easegura777 said:

how change color iconcls, i need change color iconcls from unitabSheet

Sorry, how do you assign iconCls?

×
×
  • Create New...