Tagged Questions

Questions about the drupal_render() function used in Drupal to render elements in a page as HTML.

learn more… | top users | synonyms

2
votes
1answer
36 views

Render form in drupal separately

I want to render form in drupal separately, item by item. function form($form){ $form['item1'] = array( 'type' => 'textarea', .........etc $form['item1'] = array( 'type' => 'textarea', ...
2
votes
1answer
605 views

drupal_render: how to make well-formed div structure of the form?

I noticed, forms "story_node_form" or "node_form" are formed like this: form->div->div->div-standard+div-admin+submin-button My custom content type is not formed this way: I have 49 checkboxes. I ...
0
votes
1answer
27 views

Setting value after returing form in Drupal

I generated form: function test_form($form_state) { $form['hidden'] = array( '#type' => 'hidden', ); $form['submit'] = array( '#type' => 'submit', '#value' ...
0
votes
1answer
61 views

drupal_render returns nothing, depending on previous script and php tags

I created a template, my-node-form.tpl.php, to theme a particular form. If this is the template content, then drupal_render works fine: <?php ?> <?php dsm ("debug. inside ...
0
votes
1answer
396 views

drupal_render doesn't render form element

I have this code that implements hook_form_alter for durpal search form and adds couple of new elements there. I have also added theme overwrite code in my template.php for the said form. In addition ...
0
votes
1answer
185 views

Drual form in tabular layout

I am trying to render a tabular layout (html table) for a form such that first cell contains a checkbox. $form = array(); $res = query('SELECT * FROM {mytable}'); $rows = array(); while($row = ...
0
votes
1answer
316 views

Call to drupal_render() returns NULL

I have been looking since yesterday but can't understand why a call to drupal_render() is returning NULL. In my node theme function, when I call drupal_render($element) with $element being defined ...
0
votes
3answers
385 views

Can I Omit <?php drupal_render($form); ?>

I have noticed that in your form theme file, whatever-form.tpl.php , when you omit <?php drupal_render($form); ?> the only parts of the form that are rendered is what you specified - so I ...