nsjs
28 Jun 2010, 6:27 AM
The icon css classes are incorrect in ext-touch.css. In the Touch "icons" example, in the examples directory, it has these dockedItems:
dockedItems: [{
xtype: 'toolbar',
dock: 'top',
defaults: {
ui: 'mask'
},
scroll: 'horizontal',
layout: {
pack: 'center'
},
items: [
{ iconCls: 'action' },
{ iconCls: 'add' },
{ iconCls: 'attachment' },
{ iconCls: 'bookmarks' },
{ iconCls: 'bolt' },
{ iconCls: 'chat' },
{ iconCls: 'compose' },
{ iconCls: 'delete' },
{ iconCls: 'home' },
{ iconCls: 'locate' },
{ iconCls: 'maps' },
{ iconCls: 'organize' },
{ iconCls: 'refresh' },
{ iconCls: 'reply' },
{ iconCls: 'search' },
{ iconCls: 'tag' },
{ iconCls: 'trash' }
]
}]The action, add, attachment, bookmarks, bolt, chat, and compose iconCls's work correctly. But, the delete and home iconCls's display the compose and add images, respectively, instead of the delete and home images.
I need the correct css for these images.
Appreciate any help anyone can provide.
dockedItems: [{
xtype: 'toolbar',
dock: 'top',
defaults: {
ui: 'mask'
},
scroll: 'horizontal',
layout: {
pack: 'center'
},
items: [
{ iconCls: 'action' },
{ iconCls: 'add' },
{ iconCls: 'attachment' },
{ iconCls: 'bookmarks' },
{ iconCls: 'bolt' },
{ iconCls: 'chat' },
{ iconCls: 'compose' },
{ iconCls: 'delete' },
{ iconCls: 'home' },
{ iconCls: 'locate' },
{ iconCls: 'maps' },
{ iconCls: 'organize' },
{ iconCls: 'refresh' },
{ iconCls: 'reply' },
{ iconCls: 'search' },
{ iconCls: 'tag' },
{ iconCls: 'trash' }
]
}]The action, add, attachment, bookmarks, bolt, chat, and compose iconCls's work correctly. But, the delete and home iconCls's display the compose and add images, respectively, instead of the delete and home images.
I need the correct css for these images.
Appreciate any help anyone can provide.