Icons & Images

Icon

// Icon: 
model: {
    iconLabel: 123456,
    iconValue: 'print',          
}

schema: {
    // use label as icon name
    iconLabel: { 
        type:'icon', 
        large:true,
        label:'print', 
        color: 'blue', 
        tooltip: 'Icon Print'
    }, 
    // use value as icon name
    iconValue: { 
        type:'icon', 
        large:true,
        color: 'green', 
        tooltip: 'Icon Print'
    }
}

Image

Last updated

Was this helpful?