Customization Note
If you want or need to add additional fields to the create/edit page (edit.cfm), just be sure to add the corresponding column name to the strawberry_fields hidden form field. strawberry_fields lists the field names which are used in the update/insert statement. For example...
<tr>
<td valign="BOTTOM">Category</td>
<td valign="BOTTOM">
<cfselect name="cat_id" size="1" query="qCat" value="cat_id" display="cat_txt" required="Yes"></cfselect>
</td>
</tr>
<input type="hidden" name="strawberry_fields" value="cat_id">
<td valign="BOTTOM">Category</td>
<td valign="BOTTOM">
<cfselect name="cat_id" size="1" query="qCat" value="cat_id" display="cat_txt" required="Yes"></cfselect>
</td>
</tr>
<input type="hidden" name="strawberry_fields" value="cat_id">
hth

There are no comments for this entry.
[Add Comment]