<?xml version="1.0"?>
<?xml-stylesheet
href="http://www.w3.org/2000/08/w3c-synd/style.css" type="text/css"
?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel rdf:about="http://pear.php.net/bugs/search.php">
    <title>PEAR Bug Search Results</title>
    <link>http://pear.php.net/bugs/search.php?cmd=display&amp;package_name%5B0%5D=DB_DataObject_FormBuilder</link>
    <description>Search Results</description>
    <dc:language>en-us</dc:language>
    <dc:creator>pear-webmaster@lists.php.net</dc:creator>
    <dc:publisher>pear-webmaster@lists.php.net</dc:publisher>
    <admin:generatorAgent rdf:resource="http://pear.php.net/bugs"/>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
    <items>
     <rdf:Seq>
      <rdf:li rdf:resource="http://pear.php.net/bug/18887" />
      <rdf:li rdf:resource="http://pear.php.net/bug/18361" />
      <rdf:li rdf:resource="http://pear.php.net/bug/18011" />
      <rdf:li rdf:resource="http://pear.php.net/bug/17714" />
      <rdf:li rdf:resource="http://pear.php.net/bug/16717" />
      <rdf:li rdf:resource="http://pear.php.net/bug/14939" />
      <rdf:li rdf:resource="http://pear.php.net/bug/7447" />
      <rdf:li rdf:resource="http://pear.php.net/bug/6733" />
      <rdf:li rdf:resource="http://pear.php.net/bug/6638" />
      <rdf:li rdf:resource="http://pear.php.net/bug/5992" />
      <rdf:li rdf:resource="http://pear.php.net/bug/5964" />
      <rdf:li rdf:resource="http://pear.php.net/bug/5202" />
      <rdf:li rdf:resource="http://pear.php.net/bug/4187" />
      <rdf:li rdf:resource="http://pear.php.net/bug/4041" />
      <rdf:li rdf:resource="http://pear.php.net/bug/3755" />
      <rdf:li rdf:resource="http://pear.php.net/bug/3288" />

     </rdf:Seq>
    </items>
  </channel>

  <image rdf:about="http://pear.php.net/gifs/pearsmall.gif">
    <title>PEAR Bugs</title>
    <url>http://pear.php.net/gifs/pearsmall.gif</url>
    <link>http://pear.php.net/bugs</link>
  </image>

    <item rdf:about="http://pear.php.net/bug/18887">
      <title>DB_DataObject_FormBuilder: Bug 18887 [Open] element not frozen if in a preDefGroup and not in userEditableFields</title>
      <link>http://pear.php.net/bugs/18887</link>
      <content:encoded><![CDATA[<pre>DB_DataObject_FormBuilder Bug
Reported by madsliejensen
2011-10-01T11:21:43+00:00
PHP: Irrelevant OS:  Package Version: 1.0.1

Description:
------------
If an element is not in userEditableFields, and then placed in preDefGroups, the element is still rendered as editable, even though I would think it should be frozen.</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_DataObject_FormBuilder Bug
Reported by madsliejensen
2011-10-01T11:21:43+00:00
PHP: Irrelevant OS:  Package Version: 1.0.1

Description:
------------
If an element is not in userEditableFields, and then placed in preDefGroups, the element is still rendered as editable, even though I would think it should be frozen.</pre>]]></description>
      <dc:date>2011-10-01T11:21:43+00:00</dc:date>
      <dc:creator>php &amp;#x61;&amp;#116; gartneriet &amp;#x64;&amp;#111;&amp;#x74; dk</dc:creator>
      <dc:subject>DB_DataObject_FormBuilder Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/18361">
      <title>DB_DataObject_FormBuilder: Bug 18361 [Open] crossLink with value of 0 not getting checked</title>
      <link>http://pear.php.net/bugs/18361</link>
      <content:encoded><![CDATA[<pre>DB_DataObject_FormBuilder Bug
Reported by madsliejensen
2011-03-13T15:20:00+00:00
PHP: Irrelevant OS:  Package Version: 1.0.1

Description:
------------
A form with users, containing a crossLink to usergroups, where one of the usergroups has an id of 0, does not get checked when the form is displayed.

FormBuilder does create the checkbox for the usergroup with id 0, and when checked on the form, and save form, the value is correctly set in the crossLink-table.

The error is in method _createCheckbox() of class DB_DataObject_FormBuilder_QuickForm on line 324:

        if ($checked) {
            $element-&gt;setChecked(true);
        }

instead I think this should be:

        if (null !== $checked &amp;&amp; false !== $checked) {
            $element-&gt;setChecked(true);
        }</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_DataObject_FormBuilder Bug
Reported by madsliejensen
2011-03-13T15:20:00+00:00
PHP: Irrelevant OS:  Package Version: 1.0.1

Description:
------------
A form with users, containing a crossLink to usergroups, where one of the usergroups has an id of 0, does not get checked when the form is displayed.

FormBuilder does create the checkbox for the usergroup with id 0, and when checked on the form, and save form, the value is correctly set in the crossLink-table.

The error is in method _createCheckbox() of class DB_DataObject_FormBuilder_QuickForm on line 324:

        if ($checked) {
            $element-&gt;setChecked(true);
        }

instead I think this should be:

        if (null !== $checked &amp;&amp; false !== $checked) {
            $element-&gt;setChecked(true);
        }</pre>]]></description>
      <dc:date>2011-03-13T15:20:00+00:00</dc:date>
      <dc:creator>php &amp;#x61;&amp;#116; gartneriet &amp;#x64;&amp;#111;&amp;#x74; dk</dc:creator>
      <dc:subject>DB_DataObject_FormBuilder Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/18011">
      <title>DB_DataObject_FormBuilder: Bug 18011 [Open] package.php should not be packaged</title>
      <link>http://pear.php.net/bugs/18011</link>
      <content:encoded><![CDATA[<pre>DB_DataObject_FormBuilder Bug
Reported by remicollet
2010-10-29T16:39:59+00:00
PHP: 5.3.3 OS: GNU/Linux (Fedora 14) Package Version: 1.0.1

Description:
------------
package.php is a packager tools which doesn't need to be packaged. 
In latest 1.0.1, it is set as &quot;php&quot; file in package.xml</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_DataObject_FormBuilder Bug
Reported by remicollet
2010-10-29T16:39:59+00:00
PHP: 5.3.3 OS: GNU/Linux (Fedora 14) Package Version: 1.0.1

Description:
------------
package.php is a packager tools which doesn't need to be packaged. 
In latest 1.0.1, it is set as &quot;php&quot; file in package.xml</pre>]]></description>
      <dc:date>2010-10-29T16:39:59+00:00</dc:date>
      <dc:creator>Fedora &amp;#x61;&amp;#116; FamilleCollet &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>DB_DataObject_FormBuilder Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/17714">
      <title>DB_DataObject_FormBuilder: Documentation Problem 17714 [Open] User note that is a documentation problem</title>
      <link>http://pear.php.net/bugs/17714</link>
      <content:encoded><![CDATA[<pre>DB_DataObject_FormBuilder Documentation Problem
Reported by doconnor
2010-08-17T07:57:24+00:00
PHP: Irrelevant OS: Irrelevant Package Version: 

Manual page: package.database.db-dataobject-formbuilder.php
Note submitter:
u

the pdf-presentation is offline.\r\nBut I found them here: http://qe-org.googlecode.com/svn/trunk/rapidprototyping-kr.pdf</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_DataObject_FormBuilder Documentation Problem
Reported by doconnor
2010-08-17T07:57:24+00:00
PHP: Irrelevant OS: Irrelevant Package Version: 

Manual page: package.database.db-dataobject-formbuilder.php
Note submitter:
u

the pdf-presentation is offline.\r\nBut I found them here: http://qe-org.googlecode.com/svn/trunk/rapidprototyping-kr.pdf</pre>]]></description>
      <dc:date>2010-08-17T07:57:24+00:00</dc:date>
      <dc:creator>daniel &amp;#x64;&amp;#111;&amp;#x74; oconnor &amp;#x61;&amp;#116; gmail &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>DB_DataObject_FormBuilder Documentation Problem</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/16717">
      <title>DB_DataObject_FormBuilder: Bug 16717 [Open] SubFormFB not constructed</title>
      <link>http://pear.php.net/bugs/16717</link>
      <content:encoded><![CDATA[<pre>DB_DataObject_FormBuilder Bug
Reported by saltybeagle
2009-10-20T19:17:57+00:00
PHP: 5.3.0 OS: N/A Package Version: 1.0.0

Description:
------------
In PHP 5.3.0 the SubFormFB object is not constructed correctly because parent constructors that are not named __construct are not called automatically. This results in Call to undefined method HTML_QuickForm_SubFormFB::HTML_QuickForm_SubFormFB()

The class just needs an appropriate backwards-compatible constructor.

http://code.google.com/p/unl-event-publisher/source/diff?spec=svn1137&amp;r=1137&amp;format=side&amp;path=/standalone/trunk/includes/pear/DB/DataObject/FormBuilder/QuickForm/SubFormFB.php</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_DataObject_FormBuilder Bug
Reported by saltybeagle
2009-10-20T19:17:57+00:00
PHP: 5.3.0 OS: N/A Package Version: 1.0.0

Description:
------------
In PHP 5.3.0 the SubFormFB object is not constructed correctly because parent constructors that are not named __construct are not called automatically. This results in Call to undefined method HTML_QuickForm_SubFormFB::HTML_QuickForm_SubFormFB()

The class just needs an appropriate backwards-compatible constructor.

http://code.google.com/p/unl-event-publisher/source/diff?spec=svn1137&amp;r=1137&amp;format=side&amp;path=/standalone/trunk/includes/pear/DB/DataObject/FormBuilder/QuickForm/SubFormFB.php</pre>]]></description>
      <dc:date>2009-10-20T19:17:57+00:00</dc:date>
      <dc:creator>brett &amp;#x64;&amp;#111;&amp;#x74; bieber &amp;#x61;&amp;#116; gmail &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>DB_DataObject_FormBuilder Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/14939">
      <title>DB_DataObject_FormBuilder: Feature/Change Request 14939 [Open] Per-element dateElementFormat</title>
      <link>http://pear.php.net/bugs/14939</link>
      <content:encoded><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by madsliejensen
2008-11-02T11:52:50+00:00
PHP: 5.2.6 OS:  Package Version: 

Description:
------------
It would be usefull if dateElementFormat could be an array of
elementname =&gt; dateFormat,
...
so different date-fields in a generated form could have different dateformats.</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by madsliejensen
2008-11-02T11:52:50+00:00
PHP: 5.2.6 OS:  Package Version: 

Description:
------------
It would be usefull if dateElementFormat could be an array of
elementname =&gt; dateFormat,
...
so different date-fields in a generated form could have different dateformats.</pre>]]></description>
      <dc:date>2008-11-02T11:52:50+00:00</dc:date>
      <dc:creator>php &amp;#x61;&amp;#116; gartneriet &amp;#x64;&amp;#111;&amp;#x74; dk</dc:creator>
      <dc:subject>DB_DataObject_FormBuilder Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/7447">
      <title>DB_DataObject_FormBuilder: Feature/Change Request 7447 [Open] a hideElements method would be great</title>
      <link>http://pear.php.net/bugs/7447</link>
      <content:encoded><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by rbradford@...
2006-04-20T22:40:01+00:00
PHP: 5.1.1 OS:  Package Version: 1.0.0RC4

Description:
------------
It would be really useful to have a method which would turn 
included elements into hidden elements. In some of my 
forms where I add records I include most of my fields from a 
data object, but some of these included fields I don't want 
displayed. I know you can use preGenerateForm() and 
fb_preDefElements[] to create hidden elements, but a simple 
method for this would help a lot.

I'm not totally sure what the method would be (or even if it 
is a FormBuilder method), but this is what I was thinking:

$something = DB_DataObject::factory('somethings');
$builder =&amp; DB_DataObject_FormBuilder::create($something);
$elementsToHide = array('user_id', 'created_at'));
$builder-&gt;hideElements($elementsToHide);

For example, if this was a form to add a new &quot;something&quot; 
then somewhere along the line you could assign values to the 
'user_id' and 'created_at' elements but then hide them. 
Again, I'm not sure if this method would be in the 
FormBuilder or QuickForm classes.

Just a thought.</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by rbradford@...
2006-04-20T22:40:01+00:00
PHP: 5.1.1 OS:  Package Version: 1.0.0RC4

Description:
------------
It would be really useful to have a method which would turn 
included elements into hidden elements. In some of my 
forms where I add records I include most of my fields from a 
data object, but some of these included fields I don't want 
displayed. I know you can use preGenerateForm() and 
fb_preDefElements[] to create hidden elements, but a simple 
method for this would help a lot.

I'm not totally sure what the method would be (or even if it 
is a FormBuilder method), but this is what I was thinking:

$something = DB_DataObject::factory('somethings');
$builder =&amp; DB_DataObject_FormBuilder::create($something);
$elementsToHide = array('user_id', 'created_at'));
$builder-&gt;hideElements($elementsToHide);

For example, if this was a form to add a new &quot;something&quot; 
then somewhere along the line you could assign values to the 
'user_id' and 'created_at' elements but then hide them. 
Again, I'm not sure if this method would be in the 
FormBuilder or QuickForm classes.

Just a thought.</pre>]]></description>
      <dc:date>2006-04-20T22:40:01+00:00</dc:date>
      <dc:creator>rbradford &amp;#x61;&amp;#116; khov &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>DB_DataObject_FormBuilder Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/6733">
      <title>DB_DataObject_FormBuilder: Feature/Change Request 6733 [Assigned] Optimise queries for linked tables</title>
      <link>http://pear.php.net/bugs/6733</link>
      <content:encoded><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by anselm@...
2006-02-09T13:50:52+00:00
PHP: 4.3.11 OS: All Package Version: 1.0.0RC2

Description:
------------
When a table is used as a linked field in FormBuilder, the values of interest are those describied in the linkDisplayFields for that table, and the primary key.

However, FormBuilder queries all of the object's fields when creating the form. At times this can add a certain overhead to the execution time !</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by anselm@...
2006-02-09T13:50:52+00:00
PHP: 4.3.11 OS: All Package Version: 1.0.0RC2

Description:
------------
When a table is used as a linked field in FormBuilder, the values of interest are those describied in the linkDisplayFields for that table, and the primary key.

However, FormBuilder queries all of the object's fields when creating the form. At times this can add a certain overhead to the execution time !</pre>]]></description>
      <dc:date>2006-12-16T07:13:28+00:00</dc:date>
      <dc:creator>anselm &amp;#x61;&amp;#116; netuxo &amp;#x64;&amp;#111;&amp;#x74; co &amp;#x64;&amp;#111;&amp;#x74; uk</dc:creator>
      <dc:subject>DB_DataObject_FormBuilder Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/6638">
      <title>DB_DataObject_FormBuilder: Feature/Change Request 6638 [Open] crossLinkExtraFields can't be required</title>
      <link>http://pear.php.net/bugs/6638</link>
      <content:encoded><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by demental@...
2006-01-31T12:23:39+00:00
PHP: Irrelevant OS:  Package Version: CVS

Description:
------------
I guess this is a tricky one, so I write it as a feature 
request...

Whenever you have some required fields in your crosslink 
table, that are set in crossLinkExtraFields, these 
fields are no more required in the resulting form 
element (elementTable).</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by demental@...
2006-01-31T12:23:39+00:00
PHP: Irrelevant OS:  Package Version: CVS

Description:
------------
I guess this is a tricky one, so I write it as a feature 
request...

Whenever you have some required fields in your crosslink 
table, that are set in crossLinkExtraFields, these 
fields are no more required in the resulting form 
element (elementTable).</pre>]]></description>
      <dc:date>2006-01-31T12:23:39+00:00</dc:date>
      <dc:creator>demental &amp;#x61;&amp;#116; sat2way &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>DB_DataObject_FormBuilder Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/5992">
      <title>DB_DataObject_FormBuilder: Feature/Change Request 5992 [Open] Support for defining field label as array</title>
      <link>http://pear.php.net/bugs/5992</link>
      <content:encoded><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by alex@...
2005-11-17T07:12:46+00:00
PHP: 4.3.11 OS: any Package Version: 

Description:
------------
HTML_QuickForm supports defining field labels as array. Have a look to pear/docs/HTML_QuickForm/docs/renderers/multiple-labels.php

Howevr, when you define field label as array in $fb_FieldLabels array, it is handled incorrectly (&quot;Array&quot; is passed instead of field title to addRule function). Below patch will fix this situation.

I hope this is self-explanatory

Test script:
---------------
diff -ur DataObject-orig/FormBuilder/QuickForm.php DataObject/FormBuilder/QuickForm.php
--- DataObject-orig/FormBuilder/QuickForm.php   Thu Oct 20 13:01:36 2005
+++ DataObject/FormBuilder/QuickForm.php    Mon Oct 24 10:21:33 2005
@@ -787,13 +787,13 @@
             }
             if ($rule['rule'] === false) {
                 $this-&gt;_form-&gt;$ruleFunction($realFieldName,
-                                            sprintf($rule['message'], $fieldLabel),
+                                            sprintf($rule['message'], is_array($fieldLabel)? $fieldLabel[0] : $fieldLabel),
                                             $rule['validator'],
                                             '', 
                                             $ruleSide);
             } else {
                 $this-&gt;_form-&gt;$ruleFunction($realFieldName,
-                                            sprintf($rule['message'], $fieldLabel),
+                                            sprintf($rule['message'], is_array($fieldLabel)? $fieldLabel[0] : $fieldLabel),
                                             $rule['validator'],
                                             $rule['rule'],
                                             $ruleSide);</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by alex@...
2005-11-17T07:12:46+00:00
PHP: 4.3.11 OS: any Package Version: 

Description:
------------
HTML_QuickForm supports defining field labels as array. Have a look to pear/docs/HTML_QuickForm/docs/renderers/multiple-labels.php

Howevr, when you define field label as array in $fb_FieldLabels array, it is handled incorrectly (&quot;Array&quot; is passed instead of field title to addRule function). Below patch will fix this situation.

I hope this is self-explanatory

Test script:
---------------
diff -ur DataObject-orig/FormBuilder/QuickForm.php DataObject/FormBuilder/QuickForm.php
--- DataObject-orig/FormBuilder/QuickForm.php   Thu Oct 20 13:01:36 2005
+++ DataObject/FormBuilder/QuickForm.php    Mon Oct 24 10:21:33 2005
@@ -787,13 +787,13 @@
             }
             if ($rule['rule'] === false) {
                 $this-&gt;_form-&gt;$ruleFunction($realFieldName,
-                                            sprintf($rule['message'], $fieldLabel),
+                                            sprintf($rule['message'], is_array($fieldLabel)? $fieldLabel[0] : $fieldLabel),
                                             $rule['validator'],
                                             '', 
                                             $ruleSide);
             } else {
                 $this-&gt;_form-&gt;$ruleFunction($realFieldName,
-                                            sprintf($rule['message'], $fieldLabel),
+                                            sprintf($rule['message'], is_array($fieldLabel)? $fieldLabel[0] : $fieldLabel),
                                             $rule['validator'],
                                             $rule['rule'],
                                             $ruleSide);</pre>]]></description>
      <dc:date>2005-11-17T07:12:46+00:00</dc:date>
      <dc:creator>alex &amp;#x61;&amp;#116; cgi-central &amp;#x64;&amp;#111;&amp;#x74; net</dc:creator>
      <dc:subject>DB_DataObject_FormBuilder Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/5964">
      <title>DB_DataObject_FormBuilder: Feature/Change Request 5964 [Open] Domain support</title>
      <link>http://pear.php.net/bugs/5964</link>
      <content:encoded><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by bwragg@...
2005-11-15T00:11:21+00:00
PHP: 4.3.4 OS: Redhat 8.0 Package Version: 

Description:
------------
Is it possible to map custom database types to custom form elements. For example I'm using postgresql so if I specify a domain called &quot;email&quot; and build an &quot;email&quot; quickform element can I somehow map these too together?

On line 809 of FormBuilder.php there is the $elementTypeMap var that maps field types to quick form element types. Is this where the change needs to be made?</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by bwragg@...
2005-11-15T00:11:21+00:00
PHP: 4.3.4 OS: Redhat 8.0 Package Version: 

Description:
------------
Is it possible to map custom database types to custom form elements. For example I'm using postgresql so if I specify a domain called &quot;email&quot; and build an &quot;email&quot; quickform element can I somehow map these too together?

On line 809 of FormBuilder.php there is the $elementTypeMap var that maps field types to quick form element types. Is this where the change needs to be made?</pre>]]></description>
      <dc:date>2005-11-15T00:11:21+00:00</dc:date>
      <dc:creator>bwragg &amp;#x61;&amp;#116; westnet &amp;#x64;&amp;#111;&amp;#x74; com &amp;#x64;&amp;#111;&amp;#x74; au</dc:creator>
      <dc:subject>DB_DataObject_FormBuilder Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/5202">
      <title>DB_DataObject_FormBuilder: Feature/Change Request 5202 [Open] Option for converting empty strings to NULL?</title>
      <link>http://pear.php.net/bugs/5202</link>
      <content:encoded><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by dsanders@...
2005-08-25T01:53:04+00:00
PHP: Irrelevant OS:  Package Version: 

Description:
------------
Just a small request which I thought might be useful...

An option in fb to convert empty strings to NULL when doing an update/insert.  This is low priority, at the moment I'm doing this from my DO.</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by dsanders@...
2005-08-25T01:53:04+00:00
PHP: Irrelevant OS:  Package Version: 

Description:
------------
Just a small request which I thought might be useful...

An option in fb to convert empty strings to NULL when doing an update/insert.  This is low priority, at the moment I'm doing this from my DO.</pre>]]></description>
      <dc:date>2005-08-25T01:53:04+00:00</dc:date>
      <dc:creator>dsanders &amp;#x61;&amp;#116; baselinesolutions &amp;#x64;&amp;#111;&amp;#x74; com &amp;#x64;&amp;#111;&amp;#x74; au</dc:creator>
      <dc:subject>DB_DataObject_FormBuilder Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/4187">
      <title>DB_DataObject_FormBuilder: Feature/Change Request 4187 [Open] fieldLabels postfix/prefix</title>
      <link>http://pear.php.net/bugs/4187</link>
      <content:encoded><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by papipo@...
2005-04-20T14:40:41+00:00
PHP: 4.3.11 OS: np Package Version: 

Description:
------------
It could be interesting to use prefixes or postfixes for fieldLabels. For example, take a look at the code below.

Reproduce code:
---------------
var $fb_fieldLabels = array('name', 'price');

Expected result:
----------------
Instead of:

&lt;option&gt;Ford mustang, 14508.45&lt;/option&gt;

we should be able to get:

&lt;option&gt;Ford mustang, 14508.45 â¬&lt;/option&gt;</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by papipo@...
2005-04-20T14:40:41+00:00
PHP: 4.3.11 OS: np Package Version: 

Description:
------------
It could be interesting to use prefixes or postfixes for fieldLabels. For example, take a look at the code below.

Reproduce code:
---------------
var $fb_fieldLabels = array('name', 'price');

Expected result:
----------------
Instead of:

&lt;option&gt;Ford mustang, 14508.45&lt;/option&gt;

we should be able to get:

&lt;option&gt;Ford mustang, 14508.45 â¬&lt;/option&gt;</pre>]]></description>
      <dc:date>2005-04-21T04:36:13+00:00</dc:date>
      <dc:creator>papipo &amp;#x61;&amp;#116; gmail &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>DB_DataObject_FormBuilder Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/4041">
      <title>DB_DataObject_FormBuilder: Feature/Change Request 4041 [Open] crossLinkExtraFields for multi-select forms</title>
      <link>http://pear.php.net/bugs/4041</link>
      <content:encoded><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by andrew.clark@...
2005-04-03T18:13:16+00:00
PHP: 4.3.10 OS: FreeBSD 4.10 Package Version: 

Description:
------------
Currently crossLinkExtraFields only is applicable for checkbox style crossLinks.  I'd like to see an implementation of crossLinkExtraFields for multi-select forms too.  I can imagine at least one snag in this, perhaps you've got good solutions for it.

-checkboxes provide a way to distinctly select an extra-field(s) for a given cross-link.  This might be harder with selects, as one element represents all the cross-links (e.g. try selecting two different cross-links on the same form with different extra-fields)</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by andrew.clark@...
2005-04-03T18:13:16+00:00
PHP: 4.3.10 OS: FreeBSD 4.10 Package Version: 

Description:
------------
Currently crossLinkExtraFields only is applicable for checkbox style crossLinks.  I'd like to see an implementation of crossLinkExtraFields for multi-select forms too.  I can imagine at least one snag in this, perhaps you've got good solutions for it.

-checkboxes provide a way to distinctly select an extra-field(s) for a given cross-link.  This might be harder with selects, as one element represents all the cross-links (e.g. try selecting two different cross-links on the same form with different extra-fields)</pre>]]></description>
      <dc:date>2005-04-06T00:24:09+00:00</dc:date>
      <dc:creator>andrew &amp;#x64;&amp;#111;&amp;#x74; clark &amp;#x61;&amp;#116; ucsb &amp;#x64;&amp;#111;&amp;#x74; edu</dc:creator>
      <dc:subject>DB_DataObject_FormBuilder Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/3755">
      <title>DB_DataObject_FormBuilder: Feature/Change Request 3755 [Open] Add Field Type = SET</title>
      <link>http://pear.php.net/bugs/3755</link>
      <content:encoded><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by exorion@...
2005-03-09T09:24:03+00:00
PHP: 4.3.10 OS: Linux Package Version: 

Description:
------------
Hello, i can find a way to make a field type set working like enum, but with multi select type or multi checkboxes type
And i was wondering if developers add this to a next version.

Expected result:
----------------
Including Set type to a project)</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by exorion@...
2005-03-09T09:24:03+00:00
PHP: 4.3.10 OS: Linux Package Version: 

Description:
------------
Hello, i can find a way to make a field type set working like enum, but with multi select type or multi checkboxes type
And i was wondering if developers add this to a next version.

Expected result:
----------------
Including Set type to a project)</pre>]]></description>
      <dc:date>2005-03-09T19:45:37+00:00</dc:date>
      <dc:creator>exorion &amp;#x61;&amp;#116; yandex &amp;#x64;&amp;#111;&amp;#x74; ru</dc:creator>
      <dc:subject>DB_DataObject_FormBuilder Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/3288">
      <title>DB_DataObject_FormBuilder: Feature/Change Request 3288 [Open] New Boolean issue.</title>
      <link>http://pear.php.net/bugs/3288</link>
      <content:encoded><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by rolf@...
2005-01-25T00:58:33+00:00
PHP: 5.0.3 OS: ANY Package Version: 

Description:
------------
Spoke with Justin about this :

Re : Boolean

I'll issue this as a bug if needed, if a bool is NOT NULL then only a selected status of the checkbox will pass validation. In reality, NULLable booleans should be yes/no radio button and NOT NULL should be a checkbox but not required.


If neither Yes/No (T/F whatever) is not set then it is NULL.

I use this for an &quot;active&quot; (BOOLEAN NOT NULL DEFAULT TRUE) field in most of my tables to preserve old records instead of deleting them.</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_DataObject_FormBuilder Feature/Change Request
Reported by rolf@...
2005-01-25T00:58:33+00:00
PHP: 5.0.3 OS: ANY Package Version: 

Description:
------------
Spoke with Justin about this :

Re : Boolean

I'll issue this as a bug if needed, if a bool is NOT NULL then only a selected status of the checkbox will pass validation. In reality, NULLable booleans should be yes/no radio button and NOT NULL should be a checkbox but not required.


If neither Yes/No (T/F whatever) is not set then it is NULL.

I use this for an &quot;active&quot; (BOOLEAN NOT NULL DEFAULT TRUE) field in most of my tables to preserve old records instead of deleting them.</pre>]]></description>
      <dc:date>2005-03-31T00:48:25+00:00</dc:date>
      <dc:creator>rolf &amp;#x61;&amp;#116; winmutt &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>DB_DataObject_FormBuilder Feature/Change Request</dc:subject>
    </item>
</rdf:RDF>
