Hello,
I have problem with readonly option in combo:
Required result:
I would like to get Combo only to present possible choices on the list but block choose possibility.
I want to block writing and choose from the list but I want to see list in readonly status.
My present solution (not working properly):
When I implement Combo in this way:
var form = [
{
type: “combo”,
label: “Format”,
name: “format”,
disabled: true,
options:[
{text: “AAC”, value: “AAC”},
{text: “AC3”, value: “AC3”, selected: true},
{text: “MP3”, value: “MP3”},
{text: “FLAC”, value: “FLAC”}
]},
};
newFormCombo = new dhtmlXForm(“combo_container”, form);
I can not write in combo value but I can choose it from list.
Is there any solution for that?
BR,