1. The *complete* SmartGWT or SmartClient version from the lower left-hand corner of the Developer Console (see FAQ for how to open Developer Console), for example, "v10.0p_2015-06-18/PowerEdition Deployment"
v9.1p_2016-04-15/Pro Development Only (built 2016-04-15)
2. Browser(s) and version(s) involved
IE11
3. Description -
In our codebase we have overwritten
and
to make the increase and decrease icon appear something like shown below
The following video demonstrates what is going on in IE -
In development environment the issue can be fixed by overriding the mouseDown function as follows -
But running this code in production environment fails potentially because of the minified code. I was wondering if there is a different approach that i can try, Thanks
v9.1p_2016-04-15/Pro Development Only (built 2016-04-15)
2. Browser(s) and version(s) involved
IE11
3. Description -
In our codebase we have overwritten
Code:
decreaseIconDefaults
Code:
increaseIconDefaults
The following video demonstrates what is going on in IE -
In development environment the issue can be fixed by overriding the mouseDown function as follows -
Code:
mouseDown : function (form, item, event) { if (this.isDisabled() || this.isReadOnly()) return; // force focus into the item on mouseDown - required to ensure we save out change made via // icon click if (!this.hasFocus) this.focusInItem(); this._mouseStillDownCounter = 0; if (!isc.Browser.isIE) { isc.Page.setEvent(isc.EH.MOUSE_UP, this, isc.Page.FIRE_ONCE, "_clearLastTargetIcon"); } }
Comment