Hi,
I'm using Editor in stand-alone mode and I've defined a checkbox thus:
{
label: "test",
name: "test",
type: "checkbox",
options: [
{ label: "one", value: 1}, { label: "two", value: 1}
]
}
I'm querying a database via jQuery and get an array back with the values [0, 1]. How do I set the relevant checkbox (label "two" in this case)?
Thanks in advance.
Regards,
Dave
Edited by Allan - Syntax highlighting. Details on how to highlight code using markdown can be found in this guide.