actionButtons

Add custom action buttons to the editor.

Usage

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

See it in Action