Atozed Forums
TIWBSButton Glyphicon - Printable Version

+- Atozed Forums (https://www.atozed.com/forums)
+-- Forum: Atozed Software Products (https://www.atozed.com/forums/forum-1.html)
+--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html)
+---- Forum: English (https://www.atozed.com/forums/forum-16.html)
+----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html)
+----- Thread: TIWBSButton Glyphicon (/thread-2540.html)



TIWBSButton Glyphicon - Comograma - 10-25-2021

On Bootstrap 3, the TIWBSButton had a property BSGlyphicon to add an icon to the button.
On Bootstrap 4 component TIWBS4Button, this property do not exist.
How can I add an icon to the button? Is this possible like as for the component of Bootstrap 3 to do the same with Bootstrap 4 component?


RE: TIWBSButton Glyphicon - Jose Nilton Pace - 10-25-2021

Hi, in normal IWButton i use ObjectInspector -> Image -> WebFontClass := 'fa fa-something';
And in my mastertemplate i have a CSS:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />


RE: TIWBSButton Glyphicon - Comograma - 10-26-2021

(10-25-2021, 09:36 PM)Jose Nilton Pace Wrote: Hi, in normal IWButton i use ObjectInspector -> Image -> WebFontClass := 'fa fa-something';
And in my mastertemplate i have a CSS:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />

Thanks a lot!!