Hi,
does anyone know how to make button that looks like envelope at upper right corner here (with envelope and number of mails):
http://webix.io/admin-app/#!/app/forms
I tried to edit original view but I failed.
Hi,
does anyone know how to make button that looks like envelope at upper right corner here (with envelope and number of mails):
http://webix.io/admin-app/#!/app/forms
I tried to edit original view but I failed.
It’s an icon view with the “envelope-o” icon in it.
{ view: "icon", icon: "envelope-o" },
Snippet: http://webix.com/snippet/25ea1acb
Thank you for your answer. The envelope is OK. Can you add “number” as well.
It’s built into the template using webix.protoUI
. The template contains a span with the class webix_icon_count and uses the value
property of the icon.
Snippet: http://webix.com/snippet/d0cd5726
thanks a lot for explanation and example