Giter Site home page Giter Site logo

jquery-ui-dialog-extended's People

Contributors

jasonday avatar mark-101 avatar swirlingskirts avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

jquery-ui-dialog-extended's Issues

Error: cannot call methods on dialog prior to initialization; attempted to call method 'option'

When Open, close and open again, dialog not resize with error: cannot call methods on dialog prior to initialization; attempted to call method 'option'
Problem because of window.onresize not unbinding when dialog was closed.

For fix this, need correct:

$.ui.dialog.prototype.open = function () {
.......

    // call resize()
    resize();

    //correct this
    // resize on window resize
    $(window).on("resize", resize);
    
   //add this block
    self.element.on('dialogclose', function() {
        $(window).off("resize", resize);
    });
.....
}

Recentering did not work in jQuery v1.11.2, UI v1.11.4

Hi, this is a nice little add-on. I had to change a line at the recentering section to make it work under jquery v1.11.2 and jquery UI v1.11.4

            if (elem.hasClass("resizedH") || elem.hasClass("resizedW")) {
                elem.dialog("option", "position", {my: "center", at: "center", of: window});
                elem.css("overflow", "auto");
            }

clickOut: overlay needs z-index

Hey!

I came across the problem, that the overlay did not close all the time.

After I have added a z-index (in my case 20) the function worked like a charm.

Thanks for the plugin.

Jakob

Position not responding when window resize

Hi,

Why is it the position of dialog is not responding or not changing when I try to resize the window. When I load the dialog box its position is in the center and when I resize the window to smaller width the dialog box left margin or left indention is not changing position I assume that it will respond on window resize.

Dialog Extended Breaks Modal

Love the responsive feature but
I have a dialog box on a page with modal set to true. When I add this to my page the box is no longer modal. Eg. I can click on the background and the dialog will close.
Dave

The dialog no longer re-sizes once closed

The dialog re-sizes initially, but when closed bring the screen size down to a mobile resolution then open the dialog and re-size the screen to a larger resolution. The dialog will not resize when the screen size is re-adjusted to a normal desktop size, issue occurs in JSFiddle also.

Document what is needed from modernizr

With respect to this project: thankyouthankyouthankyou. It solved a serious issue in my own work.

Just a tiny niggle: would you mind explicitly documenting somewhere what exactly is needed from modernizr? Because you need to specify on download which components you want added.

Through peeking at the code and some trial and error, I concluded that only touchevents are needed. Is this correct? In any case, please document. I wish that future users of this project need not hunt and peck like I did in order to get this right.

Thanks!

Incompatibility with jQuery 1.11.0 and/or jQuery UI 1.10.4

When creating the dialog, I receive:
Uncaught TypeError: Cannot set property 'events' of undefined

Pertaining to line:
$.ui.dialog.overlay.events = $.map('focus,keydown,keypress'.split(','), function (event) {

Using the versions of jQuery and jQuery UI you use in your jsFiddle fixes the issue.

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.