diff --git a/src/js/modules/infragistics.util.js b/src/js/modules/infragistics.util.js index c2a81e0f3..0cb3ddb92 100644 --- a/src/js/modules/infragistics.util.js +++ b/src/js/modules/infragistics.util.js @@ -1684,6 +1684,10 @@ type = $.ig.Boolean.prototype.$type; } else if (obj instanceof Date) { type = $.ig.Date.prototype.$type; + } else if (obj instanceof Array) { + if (targetType == $.ig.IEnumerable.prototype.$type) { + return obj; + } } if ($.ig.util.canAssignSimple(targetType, type)) {