Multicheck Box Cycle
Hello,
I am trying to make a Checkbox cycle between check, cross, and empty. I found this code, but can't get it to work
this.ui.oneOfChild.mark = this.value.oneOfChild.value === 1? "check":"cross";
I have also seen that people talk about "faking" it with a button, and I tried this:
var i;
if (i=2){
this.getField("Button1").buttonSetCaption("X");
i=0;
}
if (i=1){
this.getField("Button1").buttonSetCaption("/");
i++;
}
if (i=0){
this.getField("Button1").buttonSetCaption(" ");
i++;
}
also doesn't work.
Thank you so much for taking the time to help!!!!
