Hi! This class is brilliant, Thanks!! I would like to know if anyone has found a way to get multiple linked selects working with javascript. I have been able...
Hello, ... I am not sure what you mean. Isn't that what the test_linked_select.php example does? -- Regards, Manuel Lemos Metastorage - Data object relational...
Hi Manuel, I want to be able to select more than one option to link to the next box. For example if continents is set to "multiple" then the user can select...
Hi, I have another question that is probably really stupid so sorry in advance. What line should be in my code to get a reset button to work on a form that...
Manuel, I've just noticed that IE7 displays the client validation error messages only for the first time but after closing the dialog and fixing data in the...
Hello, ... That is a bit tricky. The options to show in the linked select depend on the selected group. If you select multiple groups, what options do you ...
Hello, ... The action upon clicking on a reset button is implemented by the browser. Usually it makes the form inputs have the values set when the form page...
Hello, ... Maybe. IE7 is still beta. Maybe it is causing Javascript errors that make the Javascript execution halt. I do not have a machine on which I can run...
Hi Manuel, Thanks for your reply. Using the continents / countires as an example if no continent was selected, ideally nothing would appear in the countries...
Hello, ... I am afraid it is not legal for a select input to not have any options. Maybe a dummy option should be used, like in the database versions of the...
Manuel, The multi-select feature would be very useful. I haven't used the linked select yet nor had a chance to peek into its code but multi- select feature...
... Manuel, wouldn't this be easier to solve using an AJAX solution where the code gets the ids of the selected items, assembles a query, runs the query and...
Hello, ... Sure, it needs an SQL query template different from the query template used when linking to regular select inputs. -- Regards, Manuel Lemos ...
Hello, ... That is not the problem. The linked select plug-in already uses AJAX in dynamic mode, which is the default mode for the database variants of the ...
Disregard last post. I figured it out naturally 2 minutes after posting the question. I changed the functions to use 2 different names and loaded them in a...
Hi I have a nice little form for entering/editing database entries built using this class. The only problem I am having is that a couple of fields should not...
Hello, ... If you just want to display the values, use the "Accessible" or "ReadOnly" property. -- Regards, Manuel Lemos Metastorage - Data object relational...
Manuel and others, Inviting opinions on what is a better approach in web-forms: using the original column names or fake/alias names (with alias-column-mapping ...
Hello, ... What harm can anybody cause knowning the original column names? I don't see how can using alias names be worth the effort. -- Regards, Manuel Lemos ...
hi Manuel, it has been awhile since i've asked a question. i hope all is well with you and yours. if you recall, i worked on a project developing an interface...
Hello, ... You can cache the form output, but I think you would gain more if you can use a PHP cache engine like Turck MMCache or others. -- Regards, Manuel...
Manuel, I've just noticed that LoadInputValues() silently truncates the input length to MAXLENGTH if it is > MAXLENGTH without any errors. I thought it would...
Hello, ... In normal situations, there is no way a field with MAXLENGTH will be submitted to the server with more than the allowed limit. It would not make any...
Manuel, I was trying to hack my own forms using Firefox and the Web- Developer toolbar extension that allows to manipulate forms on the client-side such as...
Manuel, I was trying to hack my own forms using Firefox and the Web- Developer toolbar extension that allows to manipulate forms on the client-side such as...
Hello, ... MAXLENGTH is not a validation. The truncation that happens on the server side is to avoid security attacks performed by hackers that spoof from ...
Manuel, Thanks for clearing that up. I'm ok with truncation but was just asking if it was a normal behavior. Regards, ... the ... submitted ... the ... see ......
Hello, First of all, this is an awesome class! Thanks for the time and effort spent developing it. I'm new to this class and have not been able to figure out...
Hello, ... Just use the LoadInputValues function to let the class load and sanitize the form values, and then use the Validate function to verify whether they...