Hi all, and thanks in advance
Has anyone been able to chage the UI of an Ext.toast()?
I've been trying and with no success...
I have this code on classic/sass/var/all.scss
Code:
@include extjs-panel-ui(
$ui: 'warn-framed',
$ui-header-background-color: red,
$ui-border-color: red,
$ui-header-border-color: red,
$ui-body-border-color: red,
$ui-border-width: 5px,
$ui-border-radius: 5px,
$ui-header-color: white
);
And i call toast just like this:
Code:
Ext.toast({
title: 'Title',
html: 'Text line 1 </br><strong> text line 2 </strong>',
align: 't',
iconCls: Ext.Msg.WARNING,
ui: 'warn',
frame: true
}, 3000);
After sencha app build no matter what i do, the toast does not get styled...
Could anyone help with this issue please?
Thank you for your time!