drupal - Disable a Field in a Paragraphs Form -
does know how alter field in paragraphs (ajax) backend form in drupal 8? want disable field, keep visible.
thanks
you can disable form field either using hook_form_alter() or hook_form_form_id_alter().
i suggest use hook_form_form_id_alter(). suppose test modules name , user_register_form id of form.
test_form_user_register_form_alter(&$form, &$form_state, $form_id) { $form['fieldname'] = array( '#type' => 'textfield', '#title' => t('text label'), '#attributes' => array('disabled' => 'disabled'), ); }
happy coding!!!
Comments
Post a Comment