Skip to main content
Category:

In this post, I'll show you how to add reset button to forms in Drupal 8.

Add reset button:

$form['actions']['reset'] = array(
  '#type' => 'submit',
  '#value' => t('Reset'),
  '#submit' => array('::resetForm'),
);

Add reset submit handler:

function resetForm($form, &$form_state) {
  $form_state['rebuild'] = FALSE;
}

with this method you can add many buttons to any form in Drupal 8.

Riadh Rahmi

Senior Web Developer PHP/Drupal & Laravel

I am a senior web developer, I have experience in planning and developing large scale dynamic web solutions especially in Drupal & Laravel.

Web Posts

Search

Page Facebook