Oracle example // Id Organitzador // Omplo les opcions de la select des de la base de dades $select = "select id_organitzador,nom from ge_organitzadors order...
Just want to share my experience... I have a similar set up of using add-modify. I have one PHP file that I use for BOTH add and modify. the Add works...
Manuel, If I have a group of checkboxes as under: Group: [ ] Admin [ ] User [ ] Browser with a label for each checkbox along with a common label for...
Hello, ... can prefix the set- ... In HTML there is no such thing as groups of inputs. When you define a label it must be associated with a single input....
Manuel, Regret for the delay in replying as I was moved to another project. I've pasted the compiled output of the toolbar.tpl: <?php /* Smarty version 2.6.11,...
Manuel, I guess that is close enough to work out a solution. How do I add another label for the input (Admin in the given example) or the set using ...
Hello, ... No, the LABEL input property just defines the default LABEL argument value of AddLabelPart function. So, you can have multiple AddLabelPart calls...
Sorry, Manuel! I couldn't follow. Here is my situation: Group: [ ] Admin [ ] User [ ] Browser (input-names: group) (input-IDs: group_admin, group_user,...
Hello, ... You need to set the FOR attribute to the ID of one of the inputs. That is how labels work. -- Regards, Manuel Lemos Metastorage - Data object...
Okay, I just stumbled upon this great class at phpclasses, and I must say, it looks great, and the code is well written, and robust for a form system to expand...
Hello, ... That is just what the example script does. In your real scripts, you would do something else. Take a look at the section of the script like below....
Thanks for the info, however, this doesn't solve the problem that I was noticing... I'm using the ajax system, so as soon as the submit button is clicked, ...
Hello, ... This happens when the form is not being submitted via AJAX. If you changed the example script, either you introduced something that is causing a...
Manuel, With a couple of submit buttons on the form, is there a way to skip form validations (cient/server) on clicking one of the submits without changing its...
Hello, ... I am not sure if this is what you mean, but if you set the SubForm property of a submit input, only the inputs that have the same SubForm property...
Manuel, I tried adding a label part right after AddInput() using: AddLabelPart( array( 'LABEL' => 'Group', 'ID' => 'group', 'FOR' => 'group_admin' )); I got no...
Hello, ... AddLabelPart will add the label where you put it within the form layout. If it does not look right for you, it is because you are not calling that...
Manuel, Would you be able to help me with this issue? Thanks much in advance... ... I've pasted the ... ('modifier', 'default', 'toolbar.tpl', 8, ... ...
Hello, ... This issue is not forgotten. I just did not had the time to look into it. Patches to solve the problem are also welcome. -- Regards, Manuel Lemos ...
Hope i'm not making myself look really stupid here.. "ValidateAsEmail"=>1, "ValidationErrorMessage"=>"It was not specified a valid e-mail address", The...
Manuel, I tried '<br /><br />' and '\n\n' for ErrorMessageSuffix but the JavaScript error dialog displays the suffix as-is. I intend to insert a line-break or...
Manuel, I've just downloaded the latest version of forms.php and seen that you implemented displaying all the client-side error messages together instead of...
Manuel, Could you give me some hints on implementing an optional PREFIX-text to input labels inside AddLabelPart() or Output() methods? I would not like to...
Hello, ... The line break string is "\n". -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer generator http://www.metastorage.net/ PHP...
Hello, ... I knew somebody would ask for that soon or later. It is possible to implement, as long as you specify the label ID field. I will implement that...