Well! It's the same concept we use in client/server apps where we provide initial/default values for fields in insert mode for user- friendliness so the user...
Manuel, I guess I wasn't clear. I always call LoadInputValues() with the boolean whether the form is submitted or not. Currently, the form_class is doing the...
Hello, ... This problem was already mentioned before. For checkboxes, radio buttons, and multiple select inputs, when you call LoadInputValues you need to pass...
Manuel, Is there a way to simulate a 'default39; value for an input? For instance, if I set the initial value for a checkbox to 1 in insert mode, it is...
... James, i had previously done this, however, i think the actual pass through value wasn't what i thought it was so i ended up with the error. it is working...
... set "VALUE" to the key of desired option "VALUE"=>"unknown", "OPTIONS"=>array( "unknown"=>"Unknown", "mastercard"=>"Master Card", "visa"=>"Visa", ...
... is SetSelectOptions what i want? here is the code i have (which doesn't work): $polarity=array( "0x0"=>"Vertical", "0x1"=>"Horizontal", "0x2"=>"Left", ...
... hi Manuel. i have that line of code. the problem is that i don't know how to select one of the input array value pairs so that it is selected when the...
Hello, ... Your input label part add should be: $form->AddLabelPart(array('FOR39;=>39;polarity39;)); -- Regards, Manuel Lemos Metastorage - Data object relational...
... Shekar, thanks for the help. it didn't display, though. here's my code: $polarity=array( "0x0"=>"Vertical", "0x1"=>"Horizontal", "0x2"=>"Left", ...
Hello, ... Have you set Internet Explorer to high level security ? That would have disabled Javascript. Still in the linked select example it would work by ...
Hello, ... For some reason the Validation Javascript code is not running. Either you have Javascript errors or you have your browser with Javascript disabled. ...
Hello, ... It seems you are either outputing the page headers after the StartLayoutCapture call or you have already started buffering PHP output with...
Hello, ... I am studying the subject. I will decide later which solution will keep everybody happy. ... I have not done anything yet. The way it is right now...
Hi again. Now I've finished my forms I have two verification problems (maybe any more). I have a problem again with captcha. Now I can see the captcha image...
... Manuel, i wasn't clear - sorry about that. i mean the output isn't valid x/html b/c the <forms> tags start and end the html output. <form...> <html> ... ...
... Manuel, the output actually looks like this: <html> <form> <head> ... </head> ... </html> </form> i'd like to see something similar to, if possible... ...
Manuel, Is it possible to leave the old-behavior 'as-is39; for backward compatibility while making disabled-inputs as the default behavior and plain-text as an...
Hello, ... No, that is meant to reject invalid values spoofed via hidden fields. For instance, if you have a form to edit a database record and you use an...
Hello, ... That was not intended but it is harmless now. I have fixed it in the CVS. Thank you for reporting. -- Regards, Manuel Lemos Metastorage - Data...
Hello, ... I'm sorry but I am afraid I cannot do anything to fix inconsisties of behavior across browsers. It is annoying but I guess you have to live with...
Hello, ... ExtraAttributes is for setting HTML attributes. There is no HTML visibility attribute. What you want cannot be achived with a single attribute. You...
Hello, ... For now it was changed only for textarea inputs. non Acessible/ReadOnly textarea inputs appear using DISABLED. As I mentioned in the future all ...
Hello, ... Maybe you were outputing something to the page before calling the HandleEvent function. -- Regards, Manuel Lemos Metastorage - Data object...
Hello, ... When you refresh the page of a previously posted page, it is like submitting the form again. Depending on what you are doing. It is easier to...
Manuel, I'm not clear with the usage of DiscardInvalidValues. Do we need to add one DiscardInvalidValues input for 'each' input we need to validate against...