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 8172659
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T21:51:23+00:00 2026-06-06T21:51:23+00:00

My framework has the ExtJS pop up window with some text fields and buttons.

  • 0

My framework has the ExtJS pop up window with some text fields and buttons. I need to achieve the functionality of tabbing inside the popup window. using tab keys i need to focus the elements displayed in the window. But on tabbing of last element the focus should return to first element in the popup window.

Any api’s in extjs helps to achieve this functionality?

  • 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-06-06T21:51:24+00:00Added an answer on June 6, 2026 at 9:51 pm

    Got this resolved by adding a listener to first and last element in the popup window.

    var firstElement = Ext.getCmp('firstEl');
    var lastElement = Ext.getCmp('lastEl');
    Ext.EventManager.addListener(
      firstElement.el,
      'keydown',
      function(e){
        var key = e.getKey();
        var shiftKey = e.shiftKey;
        if (shiftKey && key == e.TAB){
          e.stopEvent();
          lastElement.focus(true, 100);
        }
      }
    );    
    
    Ext.EventManager.addListener(
      lastElement.el,
      'keydown',
      function(e){
        var key = e.getKey();
        var shiftKey = e.shiftKey;
        if (!shiftKey && key == e.TAB){
          e.stopEvent();
          firstElement.focus(true, 100);
        }
      }
    ); 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an application on the Compact Framework that has some large embedded resources
The lack of expression trees in Compact Framework has bugged me for some time
I know that Entity Framework has some LINQ support problems (at least in comparison
The Linq framework has mapping functionality where you attach [Column] and [Table] to properties
My C++ framework has Buttons. A Button derives from Control. So a function accepting
Scrapy framework has the built-in capability to generate thumbnails. Is there any way to
Entity Framework has created the required partial classes. I can add these partial classes
The Entity Framework has a function with this signature: public EntityTypeConfiguration<TEntityType> HasKey<TKey>(Expression<Func<TEntityType, TKey>> keyExpression);
The Grails framework has a lot of constructs/features that allows for adhering to the
The Microsoft unit testing framework has suddenly gone on strike. When I try to

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.