I accept the arg from the url and according to the arg value I need to set the default option value, here is the code:

function ims_form_alter(&$form, $form_state, $form_id) {


switch ($form_id) {

  case 'media_content_node_form':

    unset($form['buttons']['preview']);

    $form['#redirect'] = 'mediacontent';

    if(is_numeric(arg(3)))
    {
      $arg_nid = arg(3);
      foreach($form['field_media_model']['#options'] as $k=>$v)
              {
        if($v==$arg_nid)
        {
        $form['field_media_model']['#default_value'] = $v;
        } 

      }
    }

    break;
  }

}
link|improve this question

80% accept rate
What type of widget is field_media_model using? – Clive Sep 20 '11 at 11:51
thanks for your attention: it's select box - node reference. I got the answer, i was accessing the values wrongly, now i am using $form['field_media_model']['#default_value'][0]['nid'] to set default value; – punit Sep 20 '11 at 12:55
Stop suggesting invalid edits to this question - they are rejected because you removed the image. If you don't know how to edit properly, don't do it. Thank you. – Shadow Wizard Oct 5 '11 at 7:30
feedback

2 Answers

up vote 1 down vote accepted

First you should steer away from a switch construction if you are only testing one thing; use an if.

Second, as per your own comment, you were using the variables wrong.

And third, why all the extra cruft, such as unsetting values, looping trough #options, and redirecting?

function ims_form_alter(&$form, $form_state, $form_id) {
  if ($form_id == 'media_content_node_form') {
    $nid = arg(3);

    if(($nid = arg(3)) && is_int($nid)) {
      $form['field_media_model']['#default_value'][0]['nid'] = $nid;
    }
  }
}
link|improve this answer
the question is simplified to understand the scenario, their are multiple cases and all other stuff is according to my custom needs,i have done with this problem it's resolved now (mentioned as comment section of question itself.) – punit Oct 11 '11 at 9:26
feedback

i was accessing the value of element wrongly, because it's a node reference field the right way to access that element is $form['field_media_model']['#default_value'][0]['nid']

link|improve this answer
Which is what I answered too :) – berkes Oct 11 '11 at 18:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.