Skip to content

fix(*): resolving more deprecations #2277

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/js/modules/infragistics.ui.combo.js
Original file line number Diff line number Diff line change
Expand Up @@ -2960,7 +2960,7 @@
// Remove readonly during the focus
// R.K. 29th August 2017, #1155 Combo in dropdown mode accepts keypress values in its input in IE/Edge
if (readonly && !($.ig.util.isEdge || $.ig.util.isIE)) {
this._options.$input.removeAttr("readonly");
this._options.$input.prop("readonly", false);
}

// Setting the range without focus won't work in most browsers
Expand Down
2 changes: 1 addition & 1 deletion src/js/modules/infragistics.ui.editors.js
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@
if (delay) {
this._timeouts.push(setTimeout(function () { self.field().focus(); }, delay));
} else {
this.field().focus();
this.field().trigger("focus");
}
},
_setFocus: function (event) {
Expand Down
2 changes: 1 addition & 1 deletion src/js/modules/infragistics.util.jquery.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@

// Get correct offsets
offset = this.igOffset();
if ( !$.nodeName( offsetParent[ 0 ], "html" ) ) {
if ( offsetParent[ 0 ].tagName.toLowerCase() !== "html" ) {
parentOffset = offsetParent.igOffset();
}

Expand Down