Add more composant to DHX form

Hi,
1/ i like to add some others composants to DHX form like radio button, select menu ?
2/ how i can use all getValues of DHX form to communicate with Web service ?

Thanks you :sunglasses:

(1)

  • there are ready to use view:β€œradio” and view:β€œselect” controls
  • if this is not enough you can create a new input component based on existing one

(2)

you can load data as

dhx.ajax("some.url/data", function(text){ var data = dhx.DataDriver.json.toObject(text); form.setValues(data); });

and save as

dhx.ajax().post("some.url/save", form.getValues());