Git Product home page Git Product logo

Comments (3)

I575159 avatar I575159 commented on August 16, 2024 1

Hi,
Suggested changes seem working for me, will flow the same.

Thanks

from openui5.

viktorsperling avatar viktorsperling commented on August 16, 2024

Hello @I575159,

Thank you for sharing this finding. I've created an internal incident DINC0113710. The status of the issue will be updated here in GitHub.

Regards,
Viktor

from openui5.

tw4 avatar tw4 commented on August 16, 2024

Hello,

I have reviewed the issue and believe that changing the default value of noTabStop to false for the clear icon may resolve the problem. If you decide to proceed with this change, I would be happy to take care of it.

Here is the code example:

this._oClearButton = this.addEndIcon({
    src: IconPool.getIconURI("decline"),
    noTabStop: false,
    visible: false,
    alt: this._oRb.getText("INPUT_CLEAR_ICON_ALT"),
    useIconTooltip: false,
    decorative: false,
    press: function() {
        if (that.getValue() !== "") {
            that.setValue("");

            that.fireChange({
                value: ""
            });

            that.fireLiveChange({
                value: ""
            });

            that._bClearButtonPressed = true;

            setTimeout(function() {
                if (Device.system.desktop) {
                    that.focus();
                    that._closeSuggestionPopup();
                }
            }, 0);
        }
    }
}, 0);

return this._oClearButton;
};

from openui5.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.