You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For radio or checkbox lists does ot work ajax validation because this types of input does not correctly processed on js side
addAttribute: function () {
var id = $(this).attr('id'),
ele = $('#' + $(this).attr('id')),
wrapper = ele.closest('.multiple-input').first(),
form = ele.closest('form');
// do not add attribute which are not the part of widget
if (wrapper.length == 0) {
return;
}
attribute is skipped because system cannot determine wrapper for it.
The text was updated successfully, but these errors were encountered:
For
radio
orcheckbox
lists does ot work ajax validation because this types of input does not correctly processed on js sideattribute is skipped because system cannot determine wrapper for it.
The text was updated successfully, but these errors were encountered: