SMART datagrid v1.4 > Classes > IconCellRenderer

Back  Forward

DataLudi.IconCellRenderer.textVisible  property

false로 지정하면 텍스트를 표시하지 않고, 아이콘만 표시한다. GridStyles.iconLocationCENTER인 경우에도 텍스트는 표시되지 않는다. 

기본값은 true.

Getter
function textVisible(): Boolean
Setter
function setTextVisible(value: Boolean)
Code -1
    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"
        }
    },
    ...
    ]);
See Also
IconLocation
GridStyles.iconLocation
Examples
Icon Cell Renderer