Yep, I realized that right after posting this.  I am using the Liferay
portal, and forgot to compile the packaged_js file with the new
version, even though I did put the new js file in the right place.

But, now I have a new problem.  (btw - I'm using Firefox on Vista):

    $el.data is not a function

It's happening in the bind function:

    // bind/unbind the handler
    function bind(b, el, opts) {
        var full = el == window, $el = $(el);

        // don't bother unbinding if there is nothing to unbind
        if (!b && (full && !pageBlock || !full && !
$el.data('blockUI.isBlocked')))
            return;
        if (!full)
            $el.data('blockUI.isBlocked', b);  <----

        // bind anchors and inputs for mouse and key events
        var events = 'mousedown mouseup keydown keypress click';
        b ? $(document).bind(events, opts, handler) : $
(document).unbind(events, handler);
    // former impl...
    //    var $e = $('a,:input');
    //    b ? $e.bind(events, opts, handler) : $e.unbind(events,
handler);
    };


Any ideas what's happening here?


On Apr 25, 12:19 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> >  I just 'upgraded' to blockUI vs 2, and for some reason the following
> >  code isn't working.  It blocks the page, but everything shown is the
> >  blockUI defaults, not my custom dialog, etc.  It works fine if I don't
> >  use the message: and css: syntax (i.e. I just put the dialog as the
> >  parameter).
>
> Sounds like you're not really using the new version then.

Reply via email to