Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6758289
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T13:45:58+00:00 2026-05-26T13:45:58+00:00

I create combobox and insert QuickTips by inserting ‘qtip’ attribute to template(like in this

  • 0

I create combobox and insert QuickTips by inserting ‘qtip’ attribute to template(like in this question).
All works fine except QuickTips does not shown on traversing combobox list by keyboard.

Does anybody know how enable QuickTips when traversing combo list by keyboard?
I’m use extjs-3.4.0
Thanks.


My combo is:

Ext.extend(Ext.form.ComboBox, {
    tpl:'<tpl for="."><div ext:qtip="{tooltip}" class="x-combo-list-item">{item}</div></tpl>',
    selectPrev:function () {
        var ct = this.store.getCount();
        var idx = 0;
        if (ct > 0) {
            if (this.selectedIndex == -1) {
                this.select(0);
            } else if (this.selectedIndex !== 0) {
                idx = this.selectedIndex - 1;
                this.select(this.selectedIndex - 1);
            }
            var el = this.view.getNode(idx);
            if (el)
                eventFire(el, "mouseover");
        }
    },
    selectNext:function () {
        var ct = this.store.getCount();
        var idx = 0;
        if (ct > 0) {
            if (this.selectedIndex == -1) {
                this.select(0);
            } else if (this.selectedIndex < ct - 1) {
                idx = this.selectedIndex + 1;
                this.select(idx);
            }
            var el = this.view.getNode(idx);
            if (el)
                eventFire(el, "mouseover");
        }
    },

    onViewOver:function (e, t) {

        var item = this.view.findItemFromChild(t);
        if (item) {
            var index = this.view.indexOf(item);
            this.select(index, false);
        }
    }
});
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T13:45:59+00:00Added an answer on May 26, 2026 at 1:45 pm

    The quick tips uses the mouse event in order to position the qtip, so that’s why this isn’t happening automatically for you. Sounds like you may need to write some custom code to get this working.

    I would try to attach a listener on an appropriate event to the combo (or perhaps to the combo’s picker) and use Ext.Element functions (e.g. alignTo or getPosition perhaps) to position a qtip where you want it. You may not even be able to use the QTip manager directly, and may have to make a custom Ext.Tip.

    Let me know if you need some more details, or if you get stuck and would like some extra hints.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm looking to create a similar combobox or dropdown list like this where the
I'd like to create a derived control from System.Windows.Forms.ComboBox that is bound to a
Requirement is to create a reusable multi-select combobox custom control. To accomplish this, I
I'd like to create a dropdown panel in WPF the acts like a ComboBox/Expander
I would like to create a ComboBox like you can see in the following
I would like to create a combobox without any textbox and with a customizable
Can anyone tell me how to create a ComboBox with a DropDownList (like the
I'm trying to create a custom ComboBox that behaves like the one in here:
I want to create a combobox in flex which will take three values, Available,
I am trying to create a combobox style widget (jquery-ui compatible) andcurrently I am

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.