Hi,
I should indeed explain better the use of the form field.
The example page
http://javascript.neyric.com/inputex/examples/form.html
is not really helpfull on your issue.
The ajax form options only send json, but if you don't specify it, you
can use the "method", and "action" properties to send it
using standard url form encoding :
new inputEx.Form( {
fields: [
{type: 'select', inputParams: {label: 'Title', name: 'title',
selectValues: ['Mr','Mrs','Mme'] } },
{inputParams: {label: 'Firstname', name: 'firstname', required:
true, value:'Jacques' } },
{inputParams: {label: 'Lastname', name: 'lastname',
value:'Dupont' } },
{type:'email', inputParams: {label: 'Email', name: 'email'}},
{type:'url', inputParams: {label: 'Website',name:'website'}}
],
buttons: [{type: 'submit', value: 'Change'}],
parentEl: 'container1' ,
method: 'GET',
action: 'myUrl.php'
});
This method however cannot send fields that don't return a string
( ListField, Group, ...).
Is it what you're looking for ?