Open Invincible83 opened 1 year ago
Upon closer examination, I came up with the following informations.
Updated plugin scope from this
var el = step.element = $(document.createElement('DIV'));
el.attrd('scope', self.makepath(config.output + '.' + id) + '__isolated:1');
el.attrd('id', id);
to this
var el = step.element = $(document.createElement('ui-plugin'));
el.attr('path', self.makepath(config.output + '.' + id));
el.attr('config', 'isolated:1');
el.attrd('id', id);
I discovered that the CAN
function with flag @enabled
doesn't work in this case. So I changed this
CAN(self.makepath(config.output + '.' + step), ['@visible', '@enabled'])
to this
CAN(self.makepath(config.output + '.' + step), ['@visible'])
In this point validation works.
Hi,
I've a problem with j-WizardExpert. The validation doesn't work, it's always
enabled: false
.Thank you