n Add reset button to forms in Drupal 8 | CodimTh

Please Disable Your Browser Adblock Extension for our site and Refresh This Page!

our ads are user friendly, we do not serve popup ads. We serve responsible ads!

Refresh Page
Skip to main content
On . By CodimTh
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