Seems like this ought to work, yet none of my fields get populated. My Title field is being populated, but its above the custom fields loop.
{custom_fields}
<tr><td class="title">{if required}<span class="redstar">*</span>{/if}{field_label}:</td>
<td>
{if textarea}
<textarea id="{field_name}" name="{exp:form_helper:field_grabber field_name='{field_name}'}" cols="40" rows="{rows}">{field_data}</textarea>
{/if}
{if textinput}
<input type="text" id="{field_name}" value="{field_data}" name="{exp:form_helper:field_grabber field_name='{field_name}'}" maxlength="{maxlength}" size="30" />
{/if}
{if pulldown}
<select name="{exp:form_helper:field_grabber field_name='{field_name}'}">
{exp:form_helper:custom_pulldown entry_id="{entry_id}" field_name="{field_name}"}
<option value="{value}" {selected}>{value}</option>
{/exp:form_helper:custom_pulldown}
</select>
{/if}
</td>
</tr>
<tr><td> </td><td class="formhelp">{field_instructions}</td></tr>
{/custom_fields}
<tr><td colspan="2" class="continue"><input type="submit" name="bSubmit" value="Update" /></td></tr>
</table>
{/exp:weblog:entry_form}
Thanks,
Chad
