Appearance
Add custom action buttons to the editor.
var options = { actionButtons: [{ id: 'smile', className: 'btn btn-success', label: '😁', type: 'button', events: { click: function() { alert('😁😁😁 !SMILE! 😁😁😁'); } } }] }; $(container).formBuilder(options);