I want to have a dropdown with multiple select option. The title should be vertically aligned at the top, leftside to the dropdown.
But its appearing at the top of the dropdown.
Content:
Content 1
Content 2
Content 3
Content 4
My code is:
isc.DynamicForm.create
({
ID: "Content",
top: 20,
left: 20,
fields:
[
{
name: "content", title: "Content", type: "select",
defaultValue: "R1",
multiple: "true",
titleOrientation: "top",
overflow: "visible",
height: 60,
width: 250,
valueMap:
{
"R1" : "Content 1",
"R2" : "Content 2",
"R3" : "Content 3",
"R4" : "Content 4",
"R5" : "Content 5",
"R6" : "Content 6"
}
}
]
});
Thanks in advance.
But its appearing at the top of the dropdown.
Content:
Content 1
Content 2
Content 3
Content 4
My code is:
isc.DynamicForm.create
({
ID: "Content",
top: 20,
left: 20,
fields:
[
{
name: "content", title: "Content", type: "select",
defaultValue: "R1",
multiple: "true",
titleOrientation: "top",
overflow: "visible",
height: 60,
width: 250,
valueMap:
{
"R1" : "Content 1",
"R2" : "Content 2",
"R3" : "Content 3",
"R4" : "Content 4",
"R5" : "Content 5",
"R6" : "Content 6"
}
}
]
});
Thanks in advance.
Comment