Check Box
Hi,
I'm a beginner of JavaScript.
Does anyone know, how to create a checkbox with some text. I've tried this below script, but it was not work.
var myDialog = app.dialogs.add ({name:"sample"});
with (myDialog.dialogColumns.add())
{
var myCheckBoxField = checkbox.add ({"ABC"});
}
var myResult = myDialog.show ();
Regards,
KPS