Index: openacs-4/packages/acs-core-docs/www/xml/developers-guide/form-builder.xml =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/developers-guide/form-builder.xml,v diff -u -r1.5 -r1.6 --- openacs-4/packages/acs-core-docs/www/xml/developers-guide/form-builder.xml 28 May 2004 22:36:20 -0000 1.5 +++ openacs-4/packages/acs-core-docs/www/xml/developers-guide/form-builder.xml 2 Jun 2004 19:46:56 -0000 1.6 @@ -70,6 +70,16 @@ db_1row get_task_values { } ad_form -extend -name form_name -form { ... } + + Note that you will get strange results when you try to set + the values for the form. You'll need to set them explicitly in an + -on_refresh section of your ad_form. In that section, you'll get + the values from the database, and set the values as so: + + db_1row get_task_values { } + template::element set_value form_name estimated_hours_work $estimated_hours_work + +