Hi,
I am trying to add new property for Options Items which should be enable only for Checkbox & Radio type of questions. I tried to add property in below way but the parameter of visibleIf gives data of Item Value not the actual question. How can I access the data of question to set the visibility?
CodeSerializer.addProperty('itemvalue', {
name: 'o_comment',
type: 'boolean',
default: false,
visibleIf: (obj) => {
debugger;
}
})
Thanks,
Santosh