Can dhtmlxtoolbar support select or radio?

Can dhtmlxtoolbar support select or radio ?
it’s need… i think …

You can add it the next way:

formData = [ { type: "settings", position: "label-left", labelWidth: 120, inputWidth: 120 }, { type: "select", label: "Account type", name: "mySelect", options:[ {text: "Admin", value: "admin"}, {text: "Organiser", value: "org", selected: "true"}, {text: "Power User", value: "poweruser"}, {text: "User", value: "user"} ]}, { type: "newcolumn" }, { type: "radio", name: "caret", value: "t1", id: "rb1", label: "Blinking", checked: true }, { type: "newcolumn" }, { type: "radio", name: "caret", id: "rb2", value: "t2", label: "Block" }, { type: "newcolumn" }, { type: "radio", name: "caret", id: "rb3", value: "t3", label: "Thick" } ]; toolbar = new dhtmlXToolbarObject("toolbarObj"); toolbar.addText("textItem", 0, "<div id='formToolbar' style='width: 100%; height: 100%'>form</div>"); myForm = new dhtmlXForm("formToolbar", formData);

Then you can use form events.
But you will need to fix CSS a little.