I am working in the confines of a CMS system, which defines certain fields which can be used to make forms for use within the application in PHP.
The list function has the signature:
function inputBasicList ($id,$value = "",$list = array(), $displayName = NULL, $displayLabel = true)
I use it thusly:
$theinput = new inputBasicList("t...
I am using phpBMS, and have made a form, similar to the sample provided.
Using the provided input fields, I have made a basic dropdown list containing two items, and a checkbox.
I want the checkbox to be selected automatically when one of the options from the dropdown box is selected.
Jens F, provided me with a solution to how I shoul...
I have a google suggest type of input field, which displays records)the result of an SQL query) as I type input. I can then select one, and what I select becomes the content of that field.
I would like to know how to push the content of that variable back to my PHP form using jquery.
I am working in the confines of phpBMS, a type of CM...
I am working with a CMS like system, phpBMS, which defines a certain way of making forms, and defines the form elements to be used in such forms.
This is an example of the form template, and these are the fields that are defined.
Generally, it is pretty simple. If you have an inputField with the id of say, 'name', the content of that f...
I am using a CMS like system, which defines custom form fields.
To make a form, all you can really do is add certain form fields, and that is it. The only action possible within the CMS form builder is to save the form to the database.
Here is an example of such a form.
I want to basically have one field, the inputSmartSearch field, w...