Index: bridge/lib/extras/autocomplete_ext.js =================================================================== --- bridge/lib/extras/autocomplete_ext.js (revision 83) +++ bridge/lib/extras/autocomplete_ext.js (working copy) @@ -58,6 +58,9 @@ Autocompleter.Base.prototype = { baseInitialize: function(element, update, options, rowC, selectedRowC) { this.element = $(element); + if (this.element == null) { + return; + } this.update = $(update); this.hasFocus = false; this.changed = false; @@ -609,6 +612,9 @@ else options = {minChars:0}; var element = $(id); + if (element == null) { + return; + } var ue = $(updateId); this.baseInitialize(element, ue, options, rowClass, selectedRowClass); Index: bridge/lib/extras/keyboardNavigator.js =================================================================== --- bridge/lib/extras/keyboardNavigator.js (revision 83) +++ bridge/lib/extras/keyboardNavigator.js (working copy) @@ -78,6 +78,9 @@ Ice.MenuBarKeyNavigator = Class.create(Ice.KeyNavigator, { initialize: function($super, componentId, displayOnClick) { + if ($(componentId) == null) { + return; + } $super(componentId); this.displayOnClick = displayOnClick; this.component.onclick = this.hideAll.bindAsEventListener(this); Property changes on: core ___________________________________________________________________ Modified: svn:ignore - build dist nbproject + dist build .project .classpath