N°7355 - Fix deprecated jQuery call

This commit is contained in:
Stephen Abello
2024-03-26 11:32:55 +01:00
parent 69e481dbc1
commit c29bff4d91
16 changed files with 25 additions and 25 deletions

View File

@@ -34,11 +34,11 @@ $(function () {
this._flatten_fields(this.options.fields);
this.sId = this.element.attr('id');
this.element.addClass('itop-tabularfieldsselector');
this.element.parent().bind('form-part-activate', function () {
this.element.parent().on('form-part-activate', function () {
me._update_from_holder();
me._update_preview();
});
this.element.parent().bind('validate', function () {
this.element.parent().on('validate', function () {
me.validate();
});