Hi, we are seeing inconsistent behavior between Google Chrome and Firefox with ListGrid column headers. 
Go to this example:
http://www.smartclient.com/?skin=SmartClient#columnSize
Use the code below. When you try it in Google Chrome, it inserts a line break after "Risk-". However, when you try it with Firefox 5, there is no line-break.
Any idea why this is happening?
	
							
						
					Go to this example:
http://www.smartclient.com/?skin=SmartClient#columnSize
Use the code below. When you try it in Google Chrome, it inserts a line break after "Risk-". However, when you try it with Firefox 5, there is no line-break.
Any idea why this is happening?
Code:
	
	
 isc.ListGrid.create({
    ID: "countryList",
    headerHeight:36,
     autoSize:true,
        headerButtonProperties:{
            wrap:true
},
    width:500, height:224, alternateRecordStyles:true,
    data: countryData,
    fields:[
        {name:"countryCode", overflow:"visible", title:"Risk-Adjusted<br>Return<br>(Equal Prob.)", width:"8%", type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png"},
        {name:"countryName", title:"Country"},
        {name:"capital", title:"Capital"},
        {name:"continent", title:"Continent"}
    ],
    canResizeFields: true
})

Comment