Buttons Bootstrap 3 icons

Buttons Bootstrap 3 icons

grekgrek Posts: 10Questions: 2Answers: 0

How i can add icon to boostrap 3 buttons ?
'class_name'=> 'icon-pencil7', - change a not add <span>
if i add
'text' => '<i class="icon-pencil7">Compose</i>',
i see this as a code

Answers

  • kthorngrenkthorngren Posts: 20,268Questions: 26Answers: 4,765

    Here is an example of what I use:

                    buttons: [
                        {extend: 'copy',
                            text: '<i class="fa fa-copy"></i> Copy',
                        },
    
    

    Kevin

This discussion has been closed.