[jQuery] blockUI: allowBodyStretch not working

2010-01-12 Thread kongo09
Unfortunately, the wonderful blockUI plugin doesn't grey out the full background on short pages. I tried the $.blockUI.defaults.allowBodyStretch = true; but that doesn't help (FireFox 3.5.7 on Ubuntu 9.10). Digging a bit deeper with Firebug, I noticed that the grey overlay carries a property of po

[jQuery] Re: jQuery BlockUI Plugin (v2) add onBlock()

2010-01-06 Thread Mike Alsup
> Hi all, >   in this plug-in I need a function like onUnblock but on completed > fadein.. > can Add this function? ok. http://www.malsup.com/jquery/block/#download

[jQuery] jQuery BlockUI Plugin (v2) add onBlock()

2010-01-06 Thread WR
Hi all, in this plug-in I need a function like onUnblock but on completed fadein.. can Add this function? tks

[jQuery] blockUI for all buttons and a tags

2010-01-05 Thread mpgjunky
Hi, I have implemented blockUI for all buttons and a tags, using a custom message as shown: $.unblockUI(); $(document).ready(function() { $.unblockUI(); $(':button, a').click(function() {

[jQuery] blockUI after a certain time

2009-12-14 Thread milo
Hi all, I'd like to start the blockUI only after a certain time; this is because I don't want to see the blockUI message it if my request takes 0,3" to be served. Is it possible? thx Danilo

[jQuery] [blockui] bug with jquery 1.4 a1

2009-12-10 Thread OALite
$('#item').block({message:(function(o){ var c=$('#alert').clone(); return c; })(this)}); do not work with jquery 1.4 a1 error info by firefox 3.5 Error: uncaught exception: [Exception... "Could not convert JavaScript argument arg 0 [nsIDOMViewCSS.getComput

[jQuery] BlockUI and ASP.NET

2009-12-09 Thread Danny
In regards to this blog post http://tiny.cc/y0vsz Elijah has been able to come up with a workaround for BlockUI. However even with this I'm having problems with ImageButton ASP.NET control. Anyone know of a way to mod BlockUI to better handle this?

[jQuery] BlockUI strange behaviour in IE7

2009-12-02 Thread Filipa Andrade
Hi, I am using BlockUI in a pop-up to block it while the new data inserted by the user is updated. It works pretty good in firefox but IE7 has a strange behaviour: after pushing the submit button the overlay message is displayed and the pop- up is closed (until here everything is fine) but after,

[jQuery] blockUI history removal

2009-12-02 Thread Stephen Richard
In jquery.blockUI.js (most up to date version says it's 2.27 24- SEP-2009) the line $(data.el).removeData('blockUI.history'); (line 391, in the reset function) looks a bit suspect to me: in the install function the data object is added to the _blocked_ element, but data.el is the _message_ (wh

Re: [jQuery] BlockUi - blue ring?

2009-11-17 Thread Jonathan Vanherpe (T & T NV)
heohni wrote: Hi, I am using the BlockUI in 2 apps. In the first, The overlay works fine, but as soon as I go with my mouse outside the div, into the grey area, my mouse pointer turns to a blue ring (ring of death). In my second, I have the blue ring also within my div area. What am I doing wr

[jQuery] BlockUi - blue ring?

2009-11-17 Thread heohni
Hi, I am using the BlockUI in 2 apps. In the first, The overlay works fine, but as soon as I go with my mouse outside the div, into the grey area, my mouse pointer turns to a blue ring (ring of death). In my second, I have the blue ring also within my div area. What am I doing wrong? Can someone

[jQuery] BlockUI and JQuery

2009-11-13 Thread PirrA
Hi, I have like 4 cascading select elements that i populate using the AJAX functions of JQuery. I was trying to use the BlockUI to block the page until all select elements are correctly populated. It seems to be working only when i use the default blockUI settings because each time i set the mes

[jQuery] jquery blockui selector in opera browser

2009-11-05 Thread mic3000
$(document).ready(function () { $("input[name='test']").click(function(){ $.blockUI({ theme: true, title: 'test', message:'test' }); }); }); when

[jQuery] blockUI and iframe

2009-10-28 Thread elubin
is it possible to have blockUI block the entire page, but call it from within an iframe on that page? I don't see any parameters to pass an element or document? i know i can get access to the parent frame with jQuery ('body',parent.document), but wanted to use blockUI from within the iframe, with

[jQuery] blockUI not working with layout

2009-10-27 Thread Indraneel
I am trying to block the whole page, but blockUI is not working with my layout (like the simple layout in demo). - Regards, Indraneel

[jQuery] blockUI cursor bug when overlayCSS backgroundColor is empty/transparent

2009-10-27 Thread Tawl
I know there's already a couple of posts about IE cursor issues, but this one is slightly different I think. If you set the overlayCSS backgroundColor property to an empty string or 'transparent', IE will not change the cursor when blocking the UI. E.g. $.blockUI({ me

[jQuery] Re: JQuery blockUI plugin - support for queueEmpty function

2009-10-20 Thread Mike Alsup
> How would I extend blockUI to have a function callback for when the > queue is empty?  I want to use something like this in a project where > I have several queued ajax requests, but I only want to call blockUI > on the first request and unblockUI when the queue is empty. You can use the ajaxSt

[jQuery] Re: JQuery blockUI plugin - support for queueEmpty function

2009-10-20 Thread Subtle
Solved the problem using $.ajaxStop to call unblockUI. See http://docs.jquery.com/Ajax/ajaxStop On Oct 20, 8:28 am, Subtle wrote: > How would I extend blockUI to have a function callback for when the > queue is empty?  I want to use something like this in a project where > I have several queued

[jQuery] JQuery blockUI plugin - support for queueEmpty function

2009-10-20 Thread Subtle
How would I extend blockUI to have a function callback for when the queue is empty? I want to use something like this in a project where I have several queued ajax requests, but I only want to call blockUI on the first request and unblockUI when the queue is empty. Thanks, Russ

[jQuery] jQuery blockUI overlay color and cursor doesn't work on firefox 3.5.3 (linux)

2009-10-11 Thread Smart Kenny
jQuery blockUI shows a grey overlay on all browsers on window. But on linux firefox (3.5.3 & 3.0.10) the overlay is transparent no matter what color and opacity is set. The 'wait' cursor also doesn't work on linux firefox while it works as expected on all browsers on windows.

[jQuery] Re: Is it possible to use jQuery BlockUI inside a User Control in .NET ?

2009-10-01 Thread Renan
ur code to ".block" and ".unblock" accordingly, and it > doesn't take clicks or iframes to make the plugin do it's thing > > On Oct 1, 10:04 am, Renan wrote: > > > Hello buddys > > > I am a ASP.NET developer and I would like to use the jQue

[jQuery] Re: Is it possible to use jQuery BlockUI inside a User Control in .NET ?

2009-10-01 Thread MorningZ
take clicks or iframes to make the plugin do it's thing On Oct 1, 10:04 am, Renan wrote: > Hello buddys > > I am a ASP.NET developer and I would like to use the jQuery BlockUI > inside a generic control, designed to show a popup (with javascript > and CSS effects). My problem is

[jQuery] Is it possible to use jQuery BlockUI inside a User Control in .NET ?

2009-10-01 Thread Renan
Hello buddys I am a ASP.NET developer and I would like to use the jQuery BlockUI inside a generic control, designed to show a popup (with javascript and CSS effects). My problem is to disable (key tab, enter and mouse clicks) the parent window (parent element) (my control is inside the page and

[jQuery] [blockUI] IE: Cursor still displays hourglass symbol after unblocking

2009-09-24 Thread Franz Buchinger
I encountered a possible blockUI bug in IE7 and IE8: If you block the ui and don't move your mouse after that, the cursor displays the hourglass symbol UNTIL you move your mouse again. Thus, the .unblock() method doesn't have the desired effect on the mouse cursor. You can easily reproduce the

[jQuery] blockUI leaves hourglass on IE8

2009-09-23 Thread elubin
Does anyone have a fix for the problem where blockUI plugin leaves the hourglass icon when the popover goes away? it can be seen on the blockUI demo page using IE8. simply click the Default Message and don't move the mouse. http://malsup.com/jquery/block/#page thanks in advance!

[jQuery] blockUI issue in IE8 (submitting patch)

2009-09-18 Thread Viraj Kanwade
Hi All, I am using blockUI(2.14) in one of my projects. A few days back, I upgraded to IE8 and the site stopped working. On debugging, I found the issue to be in blockUI plugin. Apparently, the reason seems to be that the plugin uses dynamic functions like setExpression which are not supported

[jQuery] [blockUI] - issue closing element modal

2009-09-01 Thread hburgund
Hi- I need a modal window within an element on my page and the BlockUI plugin works great for this. The problem is that I want a button on the blockUI message that will close the block. I can't seem to get this to work. If I put the button elsewhere on the page, it works to close the block, but

[jQuery] blockUI transparent borders

2009-08-15 Thread cambazz
Hello; how can I have transparent borders for modal divs that I bring to frond have transparent borders? specifying: border: 10 px transparent yellow; in the settings.css will not work. I tried few things, and I am beginning to think it is not doable. any ideas, recomendations, help greatly app

[jQuery] blockui v2.20 - hourglass cursor stays in IE 7+

2009-08-04 Thread John Simons
You should be able to replicate this on http://malsup.com/jquery/block/#page Go to the page above and click on "Default Message" button and make sure you don't move the mouse cursor. You should see that the cursor remains a hourglass even after the page comes back, to get the correct cursor you h

[jQuery] blockUI like demo#8

2009-07-31 Thread xakou
How can i have a pop-up "Thank you" like demo#8 ( http://jquery.malsup.com/block/#demos ) after the fuction finish ? My code is: function openHelp() { $.blockUI({ message: $('#divHelp') }); };

[jQuery] blockUI plugin:: scroll

2009-07-29 Thread EdAime
I am using the blockUI plugin. I am facing a situation where a form that I am showing on top of the blocked page can be too long if the browser is not in full sreen mode. Does anybody know a way to scroll a blocking element? Currently, if you scroll, it scrolls the blocked page behind, but not the

[jQuery] blockUI problem

2009-07-20 Thread Ulici Adrian
I just started using blockUI plugin for jQuery, and I have a problem with forms. I use blockUI to overlay the background and show a form. The problem is that when I'm trying to access the elements from the form it doesn't work. Anyone knows why?

[jQuery] BlockUI 1.33 crashing Internet Explorer

2009-07-15 Thread JQUser
I am using the BlockUI Plugin version 1.33 with Jquery Version 1.2.1. When the application page is accessed in which the block and unblock UI calls are executed, IE is crashing randomly. Pls help what needs to be done to overcome this issue.

[jQuery] jQuery blockUI and blocking table elements

2009-07-15 Thread chrisjcarter
is there a trick to getting the blockUI plugin to work with tables? so the following html, blah i want to call, jQuery('#blah').block() and have only the table be blocked. what happens is that the page ends up being blocked, not just the table. If i wrap the table in a div and blo

[jQuery] BlockUI overlapping issue with element negative margin

2009-06-19 Thread lideln
Hi, I am using blockUI to block a div. Above this div, there is an UL with a negative bottom margin (margin-bottom: -1px). This UL is an horizontal menu, and I use the -1px bottom margin so that the selected element (LI) car overlap the blockUI-ed div top border. The issue is that, when calling

[jQuery] jQuery BlockUI Plugin

2009-06-17 Thread Dave Maharaj :: WidePixels.com
I am tryingto get this to work but no go. I have : $('a[class^="edit_"]').click(function() { var url_id = $(this).attr('href'); var e = $(this).attr('class'); var x = $(this).attr('id').split('_'); var y = x[0]; var z = x[1]; //alert(e); $('a[class^="edit_"]').block({ mess

[jQuery] [blockUI]Showing iframe without reloding it - Problem

2009-06-15 Thread kulasart
Hi! I have some problem with BlockUI jQuery plugin. test.html [code] #page {display:none} jQuery(document).ready(function(){ $('#view').click(function() {

[jQuery] blockUI does work

2009-06-13 Thread Alex
Hi all, I tried on blockUI and the below doesn't work? Any help please? Thanks. $(document).ready(function() { $("div#menu li").click(function() { $('div.blockMe').block({ message: null }); var type = ($(this).attr("id")); $(this

[jQuery] BlockUI not always firing

2009-06-02 Thread Shadraq
I posted this in the UI group and was told to put it in here... My problem is that I have a function that is to call blockUI both upon login and logout. BlockUI only fires upon logout. Here's my code: **code** function Processing(dataString,l_processing,control) { if (l_pr

[jQuery] BlockUI

2009-05-28 Thread Mauricio Vargas
Hi everybody, im new here and i would like to know if somebody used already the block ui to validate a form... Ive seen a bunch of form validations but always using inline elements to show the warn... i would like to use with the Growl... Well, you could show me some examples, i would be gratefu

[jQuery] [BlockUI]: how to block overlapping DIVs?

2009-05-19 Thread Franz Buchinger
Hi, I'm developing a Google Maps app that uses BlockUI to freeze the map during loading cycles and to display dialogs. I wanted to place a custom menu bar on top of the Google Maps div. Because Google Maps empties "its" div during loading, i had to resort to the following markup structure:

[jQuery] BlockUI "dialog" unblocking from iFrame

2009-05-18 Thread Khimaira
Hi. I downloaded the BlockUI plugin today. I'm having this problem with unblocking from iFrame. I'm making a register page using jquery and ajax, and inform the user if the data given is valid without reloading the page. ok so everything's right, except that after i've blocked the screen after th

[jQuery] BlockUI "dialog" unblocking from iFrame

2009-05-18 Thread Khimaira
Hi. I downloaded the BlockUI plugin today. I'm having this problem with unblocking from iFrame. I'm making a register page using jquery and ajax, and inform the user if the data given is valid without reloading the page. ok so everything's right, except that after i've blocked the screen after th

[jQuery] Jquery BlockUI plugin doesn't work with IE8

2009-05-10 Thread chuck from seoul
None of the BlockUI plug-in demos (available at http://malsup.com/jquery/block/#demos) work with IE8. Does any one notice this? I am currently testing this with korean version of IE8 on Windows XP platform. answers would greatly be appreciated.

[jQuery] BlockUI Plugin Question

2009-05-08 Thread jsuggs
Is there a way to make the area that isn't being blocked greyed out? Ideally, it would just be opaque, so that it is obvious that the only area that can have interaction is the element being blocked. Kinda like how FancyBox or ThickBox does it http://fancy.klade.lv/example http://jquery.com/demo/

[jQuery] BlockUI 2.X ver. not ful screen overlay in WSS 3.0 new item list form

2009-04-28 Thread Vasssek
Hello everybody, first of all I want to say BlockUi plugin is very useful, perfect... but now I've tried it in my WSS (Sharepoint) web form. I want to block whole page, but it blocks just part of screen. When I click on horizontal or vertical scroll then the screen below is not overlayed and look

[jQuery] BlockUI problem with iframe in IE7

2009-04-27 Thread Tamoj
I have got iframe in the page and when I call blockui, the content gets disappear in the iframe. This problem is only in IE7 not in IE6 and IE8. I am currently using * jQuery blockUI plugin * Version 2.18 (16-APR-2009) need to refresh with no cache for remedy and no problem if I do not call

[jQuery] jQuery BlockUI Plugin (v2)

2009-04-11 Thread stepan
Error in line 227, symbol 17 in IE8 File http://malsup.com/jquery/block/jquery.blockUI.js?v2.16

[jQuery] BlockUI Plugin - No overlays in Linux (Fedora)

2009-04-06 Thread Matt
I was trying the BlockUI plugin - we're about to implement it with one of our products at work. The current way that we do things doesn't display right in Linux (Firefox). (Actually, it doesn't display very well at all, which is why we're moving to BlockUI anyway.) It turns out that BlockUI still

[jQuery] blockUI + SSL: $.blockUI() triggers "This page contains secure and non secure items" popup in IE6

2009-04-02 Thread ggerri
Hi there we just changed to SSL here in our office and now I have a problem with blockUI: as soon as I put $.blockUI() in my code, IE6 throws this world famous annoying popup before showing my page: "This page contains secure and non secure items" and this, even I have this warning disabled in

[jQuery] BlockUI, after first ajaxSubmit() callback, an automated 'block' results in a blank line rather than visible div with msg

2009-04-01 Thread javahollic
following on from: http://www.malsup.com/jquery/block/#dialog I have a form, and ajaxSubmit is fine, I set a callback fn in its options, and receive callbacks. Testing for error conditions, I put a dialog block in that callback so a DIV pops up on every callback. The first submission/callback r

[jQuery] Re: jQuery BlockUI Plugin v2, problems overriding default messages /getting them to show

2009-04-01 Thread javahollic
Hi Mike, Now using 2.14, everything works, thanks a lot! On Mar 31, 10:26 pm, Mike Alsup wrote: > > I'm using BlockUI 1.33 and JQuery 1.2.3 > > That's the problem.  'message' is a 2.0+ option.   If you need to use > the old version of blockUI, consult the old docs: > > http://www.malsup.com/jqu

[jQuery] Re: jQuery BlockUI Plugin v2, problems overriding default messages /getting them to show

2009-03-31 Thread Mike Alsup
> I'm using BlockUI 1.33 and JQuery 1.2.3 That's the problem. 'message' is a 2.0+ option. If you need to use the old version of blockUI, consult the old docs: http://www.malsup.com/jquery/block/index-old.html

[jQuery] jQuery BlockUI Plugin v2, problems overriding default messages /getting them to show

2009-03-31 Thread javahollic
Hi, I'm looking at using this plugin to put up a blocking 'please wait' indicator during form submission in Confluence, however, the defaults always seem to apply, changing the defaults ($.blockUI.default.message='my custom message') or providing my own map of values, (eg including (message : 'my

[jQuery] Re: jQuery BlockUI Plugin :: Demo not working in Internet Explorer

2009-03-17 Thread James
It is also highly recommended that you load your CSS files before your Javascript files. On Mar 17, 1:14 pm, Mike Alsup wrote: > > I have created a demo page according to the demos available > > onhttp://malsup.com/jquery/block/#demos. The demo i have created is > > working fine in Firefox but

[jQuery] Re: jQuery BlockUI Plugin :: Demo not working in Internet Explorer

2009-03-17 Thread Mike Alsup
> I have created a demo page according to the demos available > onhttp://malsup.com/jquery/block/#demos. The demo i have created is > working fine in Firefox but is it not running in Internet Explorer 6. > Can you please suggest, what should I do to run the demo in Internet > Explorer. Can you p

[jQuery] Re: jQuery BlockUI Plugin :: Demo not working in Internet Explorer

2009-03-17 Thread MorningZ
I'm sorry to point something totally unrelated out to you, but hope it will help anyways don't inclue *both* "-vsdoc" and the regular versions in your code. Visual studio will automatically look for a "-vsdoc" version of any javascript file you include as long as it's in the same location,

[jQuery] jQuery BlockUI Plugin :: Demo not working in Internet Explorer

2009-03-17 Thread Visionsseo
Hi, I have created a demo page according to the demos available on http://malsup.com/jquery/block/#demos. The demo i have created is working fine in Firefox but is it not running in Internet Explorer 6. Can you please suggest, what should I do to run the demo in Internet Explorer. My code is as

[jQuery] [BlockUI Plugin]use links instead of buttons

2009-03-16 Thread efet
At script's demo page, blockui's developer used buttons to activate the scripts. How can I use links instead? I tried it as below but it did not work. xxx html: Run js: $(document).ready(function() { $('#demo5').click(function() {

[jQuery] [blockui] Use blockui to block until page loads

2009-03-13 Thread Microbe
Hey there, I use jquery but have to admit to not understanding it really well - how many different things can one learn??? I have a page that uses jquery popup and also loads a CGI script. It takes a little while for the CGI to load so I want to block the page until it is done. How would I di

[jQuery] blockui plugin crash ie 6

2009-03-03 Thread lacroix1547
Remove the table and it wont crash. $.blockUI(); $.unblockUI();

[jQuery] blockUI 2.14 - timeout option not cancelled

2009-03-02 Thread Nick
Hi, We are using blockUI 2.14 with the timeout option like this: var timeout = 12; $.blockUI({ message: null, timeout: timeout }); At a later point of time we can explicitly unblock by calling: $.unblockUI(); Unfortunately it seems that subsequent blocks can be unblocked by the original ti

[jQuery] BlockUI help needed - limit function to only one button

2009-02-26 Thread DylanTusler
I've managed to get BlockUI working in conjunction with a page on my site that uploads files. However, the way I've done it works off the window.onbeforeunload event, so it is displayed on every single click or navigation on the page. How can I force it to display only with the upload button clic

[jQuery] blockUI plugin fails in IE

2009-02-26 Thread rmurp...@gmail.com
I am trying to use blockUI to block the siblings of a div when the div is in "edit" mode, i.e.: ... var $active_module = $('#myDiv1'); $active_module.siblings().block(); This works in FF3 just fine, but in IE I get an error: Unexpected call to method or property access. The error

[jQuery] blockUI issue

2009-02-20 Thread David .Wu
I found it's not work in IE7 with flash, is it?

[jQuery] BlockUI and cursor:wait in IE7

2009-02-20 Thread Jeppson
I am having a problem with the wait cursor when using BlockUI. After unBlock is run I need to move the mouse before the mouse cursor changes to the "normal" cursor. There is no problem i FF. There the cursor is changed to the default as soon as the unBlock completes. Is this a known issue? I get

[jQuery] blockUI over flash content

2009-02-17 Thread tw.gene...@gmail.com
Hi, is it possible to execute blockUI over flash content? Right now, default call $.blockUI() makes that overlay surface appera over html entries, but under flash content. I've been testing few "basez" paramteres - no success. Is it possible, that the only one solution t to hide flash content ma

[jQuery] [BlockUI] custom css class in options

2009-02-10 Thread mdiaz
Hi, I find that being able to specify a custom CSS class in the blockUI options would be very usefull in order to specify the styling in css files instead of hard-coding the CSS in the blockUI calls. The ability to add a custom CSS class can be used to style different calls to blockUI using CSS c

[jQuery] BlockUI: multiple blocks

2009-01-31 Thread Jason
Hi all, I'm using the BlockUI plugin with great success on my data table that's asynchronously loading data via AJAX, when new data is being loaded I'm visually overlaying the table (wrapped in a div) to let the user know that data is being loaded and prevent manipulation of the data in the table.

[jQuery] blockUI - Bug overlapping fixed elements

2009-01-13 Thread Beaver6813
Hey guys, There seems to be a bug that when you have a fixed element attached to the bottom of the window and then try to block an element that goes below the bottom of the window (scrolls) it overlaps onto the fixed element.. its easier to show a picture: http://i44.tinypic.com/2z4wocn.jpg Any i

[jQuery] [blockUI] Permit jQuery-wrapped DOM elements not currently in DOM as messages

2008-12-05 Thread harningt
Currently blockUI makes the assumption that any jQuery element that is passed in is a 'real' DOM element. To fix this, also check that the element also has a parent when performing operations on the parent. Since this list doesn't appear to have file-posting capability... here's an inlined patch

[jQuery] BlockUI and IE 7 issue

2008-12-01 Thread caladin
HI all, I'm using Block ui to block during Ajax calls thusly: $().ajaxStart($.blockUI).ajaxStop($.unblockUI); but it flashed black before beginning to fade in, is there a better way to do this ? a better pluging to use? Is there a way to fix this? I goto the demo page and all the dem

[jQuery] blockUI - Cannot convert undefined or null to Object

2008-11-20 Thread wlo
Hi, I'm using jQuery 1.26 and blockui 2.10. Occured on Opera 9.61. Problem listed below. My function in javascript: function doRegister() { try { $.blockUI( { overlayCSS : {

[jQuery] blockUI, select box and IE6 (again)

2008-11-19 Thread Brad
I'm having the same problem that is documented at http://groups.google.com/group/jquery-en/browse_thread/thread/976e49897120d95c?tvc=2, but can't reply to that thread (too old?). To summarize the problem, with IE6, when blockUI is called the select boxes dissappear. When unblockUI is called they

[jQuery] BlockUI Auto-Unblock

2008-11-19 Thread QuadCom
I am trying to get blockUI to display a temporary alert that will last for X seconds and then automatically unblock. I have be [EMAIL PROTECTED]@'ing around with the pause plug in but I have never been able to get that thing to work at all. I am also using the forms plugin to process the form. He

[jQuery] Re: Help in using JQUERY BLOCKUI

2008-11-16 Thread Mike Alsup
> But,no matter what I add,it shows only "Please wait." It doesn't > display the text I add... > > What should I do to make it work? I think you need to post a link to what you have. Obviously the plugin does work per the sample pages, so maybe it's just a typo on your part or something.

[jQuery] Re: Help in using JQUERY BLOCKUI

2008-11-16 Thread uniquegodwin
y as this: $().ajaxStart($.blockUI).ajaxStop($.unblockUI); But,no matter what I add,it shows only "Please wait." It doesn't display the text I add... What should I do to make it work? Please help me out...Thanks.. On Nov 16, 8:50 pm, Mike Alsup <[EMAIL PROTECTED]> wrote:

[jQuery] Re: Help in using JQUERY BLOCKUI

2008-11-16 Thread Mike Alsup
> I am trying to use the Jquery BLOCKUI pluginbut with no success... > As per the examples on that page,I tried passing my custom > message,etcit doesn't work. > > No matter what I try,it only displays the default "Please Wait..." > message :-( What ve

[jQuery] Help in using JQUERY BLOCKUI

2008-11-16 Thread uniquegodwin
Hello, I am trying to use the Jquery BLOCKUI pluginbut with no success... As per the examples on that page,I tried passing my custom message,etcit doesn't work. No matter what I try,it only displays the default "Please Wait..." message :-( What could possibly be the cause

[jQuery] blockUI:

2008-11-13 Thread pixeline
Hi! My website uses ajax to refresh various elements in the course of the user's navigation. I would like to display a "please wait" message in the element being refreshed and blockUI is the perfect candidate for that. However, there are many elements concerned, and i would like to systematize t

[jQuery] blockUI / jqModal - unload issues

2008-11-10 Thread manwood
I am trying to use either BlockUI or jqModal to display a modal dialog when the page unloads but it just won't work (in IE7). Using jqModal THIS WORKS (attaching to an tag): $().ready(function() { $('#confirm').jqm({ overlay: 88, modal: true, trigger: false }); $('#navigationBlock a')

[jQuery] BlockUI full appending to body instead of form.

2008-10-31 Thread Benzo
I'm displaying a message using the jQuery.blockUI() call. When my message stopped functioning properly, I dug into the DOM a bit and discovered it was moving my msg element to the bottom of the body. Unfortunately this breaks my form. Is there a specific reason the msg is appended to the body ins

[jQuery] BlockUI: unblocking when clicking in the darkend area?

2008-10-29 Thread jQuery
I want the darkened area that when clicked, it restores the UI (unblocks it), what's the best approach? It seems like something like this would work, but doesn't... $('.blockUI').click(function() { $.unblockUI(); }); Thanks for any help...

[jQuery] blockUi and Jquery animate function problem (IE7 of course)

2008-10-27 Thread asiarlis
I use blogUi plug in for a long time know and everything works fine. Excellent job. Recently i decide to use the animate function of jQuery to pop up an absolute position it window that holds form data. The problem is that when i use the animate function to pop up the window the blockUi in Intern

[jQuery] blockUI custom options not working

2008-10-23 Thread Microbe
Hey folks, I don't like to waste a list's time with a noob question, but I have come to my wits end on this. I am trying to use blockUI on a series of file upload fields on a page It works fine, but I just can't get the custom message to work. All the demos use a button I have tried a number

[jQuery] BlockUI unchecks checkboxes

2008-10-23 Thread Snooky
Alright, so I saw that this issue had been raised before, but apparently never actually fixed. I only tested it in FF and Chrome. To reproduce: html: js: $(function() { $("input#mycheck").click(function() { // do something with ajax } $("#return").ajaxStart(function() {

[jQuery] BlockUI: oversized overlay bug in IE web browsers ( demo included )

2008-10-21 Thread tallvanilla
Thanks Mike! But again, the solutions being suggested are outside of the plugin itself. Changing a doc type is easy, but not always practical because of other effects it may have on the page/site. It's really up to BlockUI to address this. Ideally, a plugin should be designed to account for the

[jQuery] BLOCKUI: oversized overlay bug in IE web browsers ( demo included )

2008-10-21 Thread tallvanilla
(fixed subject to specify blockUI) On Oct 21, 10:18 am, tallvanilla <[EMAIL PROTECTED]> wrote: > Thanks for all the suggestions guys, but I've kind of narrowed my > preference down to blockUI for the job at hand. Believe me, I've tried > them all, and they all have their share of quirks. Does a

[jQuery] BlockUI Plugin - FadeIn?

2008-10-21 Thread Kilik
Is there a way to get the 'Modal Dialog' feature of this plugin to fade in? It already fade outs by default when the dialog is canceled. -Thx

[jQuery] BlockUI blacks-out whole screen (BlockUI2.0x, IE7). Opacity?

2008-10-15 Thread Anxiro
Hi there, I am using jQuery 1.2.6 and BlockUI 2.09 (09/16/2008) on a local server, because of a school project. The BlockUI works perfectly in FireFox (2x and 3x) but I'm having problems in IE7; it blacks-out the whole screen. Only the 'loading'-text is visible; the *website* is gone. My opacity

[jQuery] blockUI blocking table rows

2008-10-10 Thread Bertg
When trying to block a row (tr), cell (td) or an entire table using blockui the entire window gets blocked. eg: $('table tr:first').block(); Anyone have a patch laying around to get that behaviour working or is interested in creating that functionality, cause my JS knowledge isn't that advanced

[jQuery] blockUI conflicts

2008-10-09 Thread 700lbGorilla
Does anyone know if blockUI has conflicts displaying either jcarousellite or jcarousel galleries? I'm using the jcarousel lite and it works fine, but if I try to use blockUI to display it, the carousel doesn't display. All I was trying to do was display a carousel in a litebox type way. I wanted t

[jQuery] BlockUI 1.33 $.blockUI.defaults.pageMessage is not showing the image

2008-09-19 Thread scroll
hi, i´ve this: --- $().ajaxStop($.unblockUI); function test() { $.ajax({ url: 'process.php?' + new Date().getTime() }); } $(document).ready(function() { $('#Submit').click(function() { $.blockUI.defau

[jQuery] Re: jQuery BlockUI

2008-09-12 Thread W3Max
Thank you, it works... But, I would like to use a custom cursor and as soon as I use --> cursor : 'url(/images/ajax-loader.gif)' it does not work anymore. Any idea ? W3Max On Sep 11, 6:14 pm, Mike Alsup <[EMAIL PROTECTED]> wrote: > > I can't change thecursorfor the jQueryBlockUIPlugin... Am I

[jQuery] Re: jQuery BlockUI

2008-09-11 Thread Mike Alsup
> I can't change the cursor for the jQuery BlockUI Plugin... Am I the > only one ? Where do you see the wait cursor? On the overlay? Use the overlayCSS option to override it there. Mike

[jQuery] jQuery BlockUI

2008-09-11 Thread W3Max
I can't change the cursor for the jQuery BlockUI Plugin... Am I the only one ? // override these in your code to change the default behavior and style $.blockUI.defaults = { // message displayed when blocking (use null for no me

[jQuery] blockUI + negative text-indent FF2 Mac

2008-09-10 Thread defderf
Just wanted to share something that I discovered today while troubleshooting a weird issue on FF2/Mac. I created a modal pop-up window using blockUI which has product details, including 2 buttons. Got it all styled up and looking good and then when testing on FF2 Mac, I discovered the content of t

[jQuery] blockUI styling question

2008-09-04 Thread Brad
I'd like to accomplish a couple of things with BlockUI. I suspect these can be done by changing styles and other settings but I haven't been able to achieve the desired affect. 1. I want the mask to be transparent. IOW, the user should not be aware of the overlay, but also shouldn't be able to in

[jQuery] BlockUI is not styled as I want

2008-08-30 Thread notuo
Hi. I am newbie with jquery and also I am using BlockUI along with the youtube plugin (from http://saidur.wordpress.com/2007/12/03/jquery-youtube-beta-plugin/) and I hope somebody can help me. I get the youtube plugin and is working fine. The only issue I have is the BlockUI is not using any of

[jQuery] Re: jQuery BlockUI

2008-08-18 Thread GMatos
But if my request take longer than 10 seconds? This does not work. On Aug 12, 10:42 am, Mike Alsup <[EMAIL PROTECTED]> wrote: > Try calling it like this: > > setTimeout($.blockUI, 10); > > > If I do it my submit is locked. And the screen of 'wait' does not > > disappear. > > > On 10 ago, 16:42,

  1   2   >