GithubHelp home page GithubHelp logo

Problem to set focus about bootstrap-modal HOT 6 CLOSED

jschr avatar jschr commented on July 21, 2024
Problem to set focus

from bootstrap-modal.

Comments (6)

jschr avatar jschr commented on July 21, 2024

Make sure you have tabindex="-1" set on the modal element in order to enable focus. This is also true for Bootstrap's default modals so you'll notice them in the examples in the documentation: http://twitter.github.com/bootstrap/javascript.html#modals

from bootstrap-modal.

ericalves avatar ericalves commented on July 21, 2024

Hi!

My div have tabindex but don't work with your modal.. although with the default bootstrap works.. can you help me?

from bootstrap-modal.

jschr avatar jschr commented on July 21, 2024

Are you able to provide a jsfiddle of the issue? It would help me figure out what is going on.

Thanks

from bootstrap-modal.

ericalves avatar ericalves commented on July 21, 2024

Hi!
Sorry, the error was mine!
But I have one more question.. if I use TAB to change the focus on controls. allows set focus on the main page in back of the modal.. how do I avoid this?

thank you again!

from bootstrap-modal.

jschr avatar jschr commented on July 21, 2024

Interesting question, this is more of a general problem as it is difficult to have a tabindex for a section in the page (you'll find a couple questions on stackoverflow about this).

Here's what I came up with to solve your problem (tweak as necessary):

$('.modal').on('keydown', '[data-tabindex]', function(e){
  if (e.keyCode && e.keyCode == 9){
    var $next = $rollover = $(this);

    $(e.delegateTarget).find('[data-tabindex]').each(function(e){
      if (!e.shiftKey){
        $next = $next.data('tabindex') < $(this).data('tabindex') ?
          $next = $(this) :
          $rollover = $(this);
      } else {
        $next = $next.data('tabindex') > $(this).data('tabindex') ?
          $next = $(this) :
          $rollover = $(this);
      }

    });

    $next[0] !== $(this)[0] ?
      $next.focus() : $rollover.focus();

    e.preventDefault();
  }
});

Check out the stackable example on the demo page to see how to use it.

from bootstrap-modal.

jschr avatar jschr commented on July 21, 2024

This functionality is now provided by default in the current wip-2.0 branch

from bootstrap-modal.

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.