You are here

README.txt in Multiple Fields Remove Button 7

Same filename and directory in other branches
  1. 8 README.txt
Description: 
Multiple fields remove button add functionality to remove unlimited input fields
from node form.

Configurations: 
Enable this module and select unlimited option in field form. 
Go to node form and you will see Remove button against each field for which you
were selected "unlimited" option.

For Developers:
You can implement this functionality to others fields which have not containing
remove button.
function hook_multiple_field_remove_button_field_widgets_alter(&$fieldwidgets) {
  // Add new widget type in $fieldwidgets
}

File

README.txt
View source
  1. Description:
  2. Multiple fields remove button add functionality to remove unlimited input fields
  3. from node form.
  4. Configurations:
  5. Enable this module and select unlimited option in field form.
  6. Go to node form and you will see Remove button against each field for which you
  7. were selected "unlimited" option.
  8. For Developers:
  9. You can implement this functionality to others fields which have not containing
  10. remove button.
  11. function hook_multiple_field_remove_button_field_widgets_alter(&$fieldwidgets) {
  12. // Add new widget type in $fieldwidgets
  13. }