Giter Site home page Giter Site logo

mlazz / multiselect Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 2.0 218 KB

MultiSelect is a MooTools plugin that turns your checkbox set into one single multi-select dropdown menu. MultiSelect is also completely CSS skinnable.

Home Page: http://users.skavt.net/bmalezic/MultiSelect

JavaScript 100.00%

multiselect's People

Contributors

mlazz avatar

Stargazers

 avatar  avatar

Watchers

 avatar

multiselect's Issues

Add Touch options for Android Tables

 // list container
    var list = new Element('ul', {
        'styles': { display: 'none' },
        'events': {
            'mouseenter': function() { self.action = 'open'; }, 
            'mouseleave': function() { 
                self.action = 'close';
                self.itemHover(this, 'none');
            },
            'mousedown': function(e) { e.stop(); }, // stop text selection
            'touchstart': function() { self.action = 'open'; }, 
            'touchend': function() { 
                self.action = 'close';
                self.itemHover(this, 'none');
            },
            'touchstart': function(e) { e.stop(); }, // stop text selection

            'selectstart': function() { return false; }, // stop IE text selection

            'keydown': function(e) {
                if (e.key == 'esc') {
                    self.toggleMenu('close', monitor, this);
                }
                else if (e.key == 'down' || e.key == 'up') {
                    self.itemHover(this, e.key);
                }
            }
        }
    });

Multiselect drop down performance issue in IE8

Hi

We are facing a performance issue when we click on 'All' link in grouped multiselect drop down component when we have many values (around 100 values) in the drop down.

This is issue is occurring only in IE8 and working fine in the other browsers. After our initial analysis we observed that

The below lines in the function changeItemState is causing this problem in IE8. Can you please provide us any work around for this
monitor.set('html', '

' + this.changeMonitorValue(item.getParent()) + '
');
monitor.title = this.getHoverTitle(item.getParent());

Regards,
Nagarjun

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.