In this example:
https://www.smartclient.com/smartcli...izeIncrease=10
if I try this code:
	then I end up with mismatched row heights for the image column relative to the other column(s):
							
						
					https://www.smartclient.com/smartcli...izeIncrease=10
if I try this code:
Code:
	
	isc.ListGrid.create({
    ID: "countryList",
    width:200, height:224, alternateRecordStyles:true, 
    data: countryData,
    fields:[
        {name:"countryCode", title:"Flag", width:50,
            type: "image",frozen:true,imageSize:50,
            imageURLPrefix: "flags/16/",
            imageURLSuffix: ".png"
        },
        {name:"countryName", title:"Country"}
    ]
})
Comment