diff --git a/dist/GridSearch.mpk b/dist/GridSearch.mpk index 97dbcb6..454f2a9 100644 Binary files a/dist/GridSearch.mpk and b/dist/GridSearch.mpk differ diff --git a/package.json b/package.json index 94c148a..e364403 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "GridSearch", - "version": "3.2.2", + "version": "3.2.3", "description": "Search Mendix Grids and Lists using a number of search widgets.", "license": "Apache 2", "author": "Eric Tieniber", diff --git a/src/GridSearch/widget/ActiveFilters.js b/src/GridSearch/widget/ActiveFilters.js index 2b4f3f2..45d3cd0 100644 --- a/src/GridSearch/widget/ActiveFilters.js +++ b/src/GridSearch/widget/ActiveFilters.js @@ -22,7 +22,6 @@ define([ blankOptionLabel: "", postCreate: function () { - mx.logger.debug(this.id + ".postCreate"); this.superPostCreate(); //retrieve state (if available) @@ -35,8 +34,6 @@ define([ }, update: function (obj, callback) { - mx.debug(this.id + ".update"); - //this._setupGrid(); this._contextObj = obj; diff --git a/src/GridSearch/widget/AssociationCheckbox.js b/src/GridSearch/widget/AssociationCheckbox.js index b1f470e..b51e7e4 100644 --- a/src/GridSearch/widget/AssociationCheckbox.js +++ b/src/GridSearch/widget/AssociationCheckbox.js @@ -38,7 +38,6 @@ define([ }, update: function (obj, callback) { - mx.logger.debug(this.id + ".update"); this._setupGrid(this._finishGridSetup.bind(this)); this._contextObj = obj; diff --git a/src/GridSearch/widget/GridFilter.js b/src/GridSearch/widget/GridFilter.js index 4224ceb..722f9f0 100644 --- a/src/GridSearch/widget/GridFilter.js +++ b/src/GridSearch/widget/GridFilter.js @@ -53,8 +53,6 @@ define([ }, update: function (obj, callback) { - mx.logger.debug(this.id + ".update"); - this._setupGrid(this._finishGridSetup.bind(this)); this._contextObj = obj; diff --git a/src/GridSearch/widget/GridSearch.js b/src/GridSearch/widget/GridSearch.js index de9c7d3..7d85606 100644 --- a/src/GridSearch/widget/GridSearch.js +++ b/src/GridSearch/widget/GridSearch.js @@ -32,7 +32,6 @@ define([ postCreate: function () { this.superPostCreate(); - mx.logger.debug(this.id + ".postCreate"); if (this.renderAsTextarea) { this._searchNode = this.searchNodeMulti; @@ -54,7 +53,6 @@ define([ }, update: function (obj, callback) { - mx.logger.debug(this.id + ".update"); this._setupGrid(this._finishGridSetup.bind(this)); this._contextObj = obj; this._updateRendering(callback); @@ -63,7 +61,6 @@ define([ t("searchValue", this._searchNode.value); }, _updateRendering: function (callback) { - mx.logger.debug(this.id + "._updateRendering"); if (callback) { callback() }; }, diff --git a/src/GridSearch/widget/GridSearchMX.js b/src/GridSearch/widget/GridSearchMX.js index a550c9d..5a0602b 100644 --- a/src/GridSearch/widget/GridSearchMX.js +++ b/src/GridSearch/widget/GridSearchMX.js @@ -43,7 +43,6 @@ define([ }, postCreate: function () { - mx.logger.debug(this.id + ".postCreate"); this.superPostCreate(); this.pathToAttribute = this.pathToAttribute || this.stringPathToAttribute; diff --git a/src/GridSearch/widget/LocalCheckbox.js b/src/GridSearch/widget/LocalCheckbox.js index e80fe45..adfe9cf 100644 --- a/src/GridSearch/widget/LocalCheckbox.js +++ b/src/GridSearch/widget/LocalCheckbox.js @@ -29,7 +29,6 @@ define([ }, postCreate: function () { - mx.debug(this.id + ".postCreate"); this.superPostCreate(); //get static options @@ -51,8 +50,6 @@ define([ }, update: function (obj, callback) { - mx.logger.debug(this.id + ".update"); - this._setupGrid(this._finishGridSetup.bind(this)); this._contextObj = obj; diff --git a/src/GridSearch/widget/ResetButton.js b/src/GridSearch/widget/ResetButton.js index 6956559..b209773 100644 --- a/src/GridSearch/widget/ResetButton.js +++ b/src/GridSearch/widget/ResetButton.js @@ -10,7 +10,6 @@ define([ buttonCaption: null, templateString: widgetTemplate, update: function (obj, callback) { - mx.logger.debug(this.id + ".update"); this.resetButton.innerText = this.buttonCaption || ""; this._setupGrid(); diff --git a/src/package.xml b/src/package.xml index 5f1fd55..34925fa 100644 --- a/src/package.xml +++ b/src/package.xml @@ -1,6 +1,6 @@ - +