Add more composant to DHX form

Hi,
it is my first application for using DHX.
I like to add radio button, select menu to my form but i don’t know how i can modify in .js file.

I develop a mobile application using jquery mobile and html 5.

Thanks you

Hello

Please follow the link
docs.dhtmlx.com/doku.php

Here our documentation and demos

Thanks you for your response.
I use this documen to add some coposant like this :

scheduler.config.form = [
			{name:"reccuring", height:21, type:"select", map_to:"rec_type", options:[
				{key:"", label:"Do not repeat"},
				{key:"day", label:"Each day"},
				{key:"week", label:"Each week"},
				{key:"month", label:"Each month"}
				]},
			{view:"datepicker", id:'start_date', label:"Start",        timeSelect:1, dateFormat:"%Y-%m-%d %H:%i"},
			{view:"datepicker", id:'end_date',   label:"End",          timeSelect:1, dateFormat:"%Y-%m-%d %H:%i"},
			{view:"textarea",   id:'details',    label:"Notes",        width:300,    height:150},
			{view:"button",	    id:'delete',     label:"Delete event", type:"form",  css:"delete"}
		];

But the select menu not working

I use this documen to add some coposant like this :

The current version of the mobile Scheduler doesn’t support recurring events. This feature will be included into the next version (will be released soon).

If you are using object with recurring name just for example, here is how the select view can be added:

scheduler.config.form = [ { view:"select", id:"form_select", options:[ {value:"none", label:"Do not repeat"}, {value:"day", label:"Each day"}, {value:"week", label:"Each week"}, {value:"month", label:"Each month"} ]}, {view:"datepicker", id:'start_date', label:"Start", timeSelect:1, dateFormat:"%Y-%m-%d %H:%i"}, {view:"datepicker", id:'end_date', label:"End", timeSelect:1, dateFormat:"%Y-%m-%d %H:%i"}, {view:"textarea", id:'details', label:"Notes", width:300, height:150}, {view:"button", id:'delete', label:"Delete event", type:"form", css:"delete"} ];