By editor, 13 April, 2016 Question How to remove / disable Autosubmit usability with views anf Form API (FAPI) on textfield ctools-auto-submit ctools-auto-submit-processed Form API : $form['the_text_field']['#attributes']['class'][] = 'ctools-auto-submit-exclude'; OR '#attributes' => array('class' => array('ctools-auto-submit-exclude')), Views (using hook_form_alter) function MYMODULE_form_alter(&$form, &$form_state, $form_id) { if ($form_id == "views_exposed_form") { if (isset($form['mytextfield'])) { $form['mytextfield']['#attributes']['class'][] = 'ctools-auto-submit-exclude'; } } } Tags Drupal 8 Code Drupal 7 Comments You must have JavaScript enabled to use this form. Your name Subject Comment About text formats Plain text No HTML tags allowed. Lines and paragraphs break automatically. Web page addresses and email addresses turn into links automatically.
Comments