Drupal Form:want to show previous form value as default_value on page

后端 未结 8 1509
春和景丽
春和景丽 2020-12-31 20:57

My Goal is if user is submitting this form with \"Product Name\" value as \"YYY\". On submit page should reload but this time \"Product Name\" should show previous valye as

8条回答
  •  失恋的感觉
    2020-12-31 21:47

    I prefer to save all values in one time when we are speaking about complex forms :

    foreach ($form_state['values'] as $form_state_key => $form_state_value) {
        $form_state['storage'][$form_state_key] = $form_state['values'][$form_state_value];
    }
    

提交回复
热议问题