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

  • SEARCH
  • Home
  • 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 7909789
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T12:35:59+00:00 2026-06-03T12:35:59+00:00

I need to implement Window which can be always on top. How can I

  • 0

I need to implement Window which can be always on top. How can I to do it? All my tries with WindowManager give me no results 🙁

  • 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-03T12:36:01+00:00Added an answer on June 3, 2026 at 12:36 pm

    In Ext.window.Window, there’s a property called ‘modal‘: set it to true.

    Otherwise, use the WindowManager to manage your windows: in this case you have to follow the following steps:

    1. register your windows to the WindowManager (Ext.WindowManager.register (winId))
    2. use bringToFront method to set your window on top (Ext.WindowManager.bringToFront (winId))
    3. finally, check the element on top with the getActive method (Ext.WindowManager.getActive ())

    E.g.:

    Ext.create ('Ext.window.Window', {
      title: 'Your window' ,
      width: 300 ,
      height: 300 ,
      html: 'ciao ciao' ,
      modal: true
    }).show ();
    

    Or:

    var win1 = Ext.create ('Ext.window.Window', {
      title: 'Your window' ,
      id: 'firstWin' ,
      width: 300 ,
      height: 300 ,
      html: 'ciao ciao' ,
    });
    win1.showAt (50, 50);
    
    var win2 = Ext.create ('Ext.window.Window', {
      title: 'Your window' ,
      id: 'secondWin' ,
      width: 300 ,
      height: 300 ,
      html: 'I love pizza' ,
    });
    win2.showAt (60, 60);
    
    // Register your floating objects (window in this case) to the WindowManager
    Ext.WindowManager.register (win1);
    Ext.WindowManager.register (win2);
    
    // Bring 'firstWin' on top
    Ext.WindowManager.bringToFront ('firstWin');
    
    // Then, check the zIndexStack
    alert (Ext.WindowManager.getActive().getId ()); // this is firstWin, the window with the highest zIndex
    

    Hope this help you.

    Cyaz

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

Sidebar

Related Questions

I need to implement task which is quite common feature for RichTextEditors - take
I need to implement a Canvas which scales its contents according to its size.
I need to customize the normal TCP implementation so that I can implement and
I have a bunch of COM objects which all implement the same interface, and
I need to implement a method that can measure Time and CPU cycles of
I need to implement Integrated Windows Authentication for a WCF service hosted on IIS
I need to implement a custom handler for MVC that gives me the first
I need to implement login velocity checking for a web service. The service is
I need to implement a SOAP Web Service on Jboss Seam 2.1.0. The idea
I need to implement handling of redelivery of JMS messages in the application that

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.