stirucherai
23 Aug 2011, 9:42 PM
Dear All,
var rootPanel= new Ext.Panel({
fullscreen:true,
dockedItems: [
{
dock:"top",
items:[{xtype:'toolbar', ui:'light',
items: [
{ xtype:'panel', id:"PattuName", height:40, width:300, style:'color:white'},
{ xtype: 'spacer'},
{ iconMask: true, ui: 'plain', iconCls: 'delete', style:"float:right" },
{ iconMask: true, ui: 'plain', iconCls: 'add' }
]
},]})
Ext.get("PattuName").update('Some text');
The above code does not work. When I change the color:white to any other value (like black, blue) it works. I need white please help resolve this issue
var rootPanel= new Ext.Panel({
fullscreen:true,
dockedItems: [
{
dock:"top",
items:[{xtype:'toolbar', ui:'light',
items: [
{ xtype:'panel', id:"PattuName", height:40, width:300, style:'color:white'},
{ xtype: 'spacer'},
{ iconMask: true, ui: 'plain', iconCls: 'delete', style:"float:right" },
{ iconMask: true, ui: 'plain', iconCls: 'add' }
]
},]})
Ext.get("PattuName").update('Some text');
The above code does not work. When I change the color:white to any other value (like black, blue) it works. I need white please help resolve this issue