disabledFieldButtons

Disable the form action buttons typically found in the bottom right of the editor.

Usage

var options = {
  disabledFieldButtons: {
    text: ['remove'], // disables the remove butotn for text fields
    select: ['edit'] // disables the edit button for select fields
  },
};
$(container).formBuilder(options);

See it in Action