The code seems to get as far as the else if (_.isFunction(options)) block but does not make it into the renderOptions function. I have over-ridden the function in my code and replaced the block with:
else if (_.isFunction(options)) {
var newOptions = options();
this.renderOptions(newOptions);
}
I am using the following schema for a radio control:
The code seems to get as far as the
else if (_.isFunction(options))
block but does not make it into the renderOptions function. I have over-ridden the function in my code and replaced the block with: