SMART datagrid v1.4 > Classes > IconCellRenderer
false로 지정하면 텍스트를 표시하지 않고, 아이콘만 표시한다. GridStyles.iconLocation이 CENTER인 경우에도 텍스트는 표시되지 않는다.
기본값은 true.
grid.setColumns([{
name: "Country",
fieldName: "Country",
width: "80",
imageList: "images1",
renderer: {
type: "icon",
textVisible: false
},
dynamicStyles: "iconStyles2",
styles: {
iconIndex: 0,
iconLocation: "left",
iconAlignment: "center",
iconOffset: 2
},
header: {
text: "textVisible\n=false"
}
},
...
]);