Questions tagged [jquery-blockui]

The jQuery BlockUI Plugin lets you simulate synchronous behavior when using AJAX by blocking user interaction and showing a user-defined wait indication.

The jQuery BlockUI Plugin lets you simulate synchronous behavior when using AJAX, without locking the browser. When activated, it will prevent user activity with the page (or part of the page) until it is deactivated. BlockUI adds elements to the DOM to give it both the appearance and behavior of blocking user interaction.

166 questions
76
votes
11 answers

TypeError: $.browser is undefined

I am using msdropdown image combo box to create dropdown select options. when I run this code locally on my PC, everything works great. But when I run it on GoDaddy servers, the msdropdown becomes disabled. It doesn't work on any browsers. Firebug…
user1972934
  • 801
  • 1
  • 6
  • 8
28
votes
4 answers

jQuery ajax beforeSend

I have a simple AJAX call that is executing a function on the beforeSend and on complete. They execute fine but the beforeSend is "seemingly" not executed until after the success. On the beforeSend there is a "Please wait" notification. If I put a…
user1134179
  • 539
  • 1
  • 12
  • 24
12
votes
5 answers

How to determine where the current visible vertical location inside a jquery dialog is?

I have a case where I am using a jquery ui dialog and I have any html table in the dialog where the dialog is fixed height: $("#modalDialogContainer").dialog({ resizable: false, height: 700, autoOpen: false, width: 1050, modal:…
leora
  • 188,729
  • 360
  • 878
  • 1,366
9
votes
4 answers

Block UI spinning preloader

I was wondering if anyone could shed insight as to how I could add a spinning preloader (like apple uses) using the jQuery Block UI plugin. The preloader would have to spin until the AJAX content loads. Is this possible with Block UI? Any…
Chad
  • 103
  • 1
  • 2
  • 4
8
votes
7 answers

Is there anyway to have jquery BlockUI vertically center on the screen

I am using jquery blockui but the div that is being covered is very long, so the loading message shows up off the screen. Is there anyway to have jquery blockui loading message vertically center on the visible screen so people can see the message…
leora
  • 188,729
  • 360
  • 878
  • 1,366
8
votes
3 answers

blockUI exception 'parentNode' of undefined

I have huge javascript code and blocking unblocking UI through your blockUI.js (http://malsup.com/jquery/block/) I get "Cannot read property 'parentNode" of undefined" exception randomly. It seems like blocking/unblocking sequence in my code got…
Paresh Varde
  • 1,084
  • 3
  • 16
  • 39
5
votes
3 answers

JQuery BlockUI progress indicator in every Asp.net postback

I would like to implement a jquery blockUI to popup and show a progress indicator (loading circle) during postbacks in Asp.Net. How can I implement this? I am using masterpages so I was wondering if I can implement this code in one place to keep it…
Sev
  • 761
  • 4
  • 16
  • 29
5
votes
1 answer

JQuery BlockUI mouse loading cursor doesn't returns to default in Google Chrome

My JQuery BlockUI mouse loading cursor returns to the default cursor in FF after server response, but doesn't return to default cursor in Google Chrome, and gives the impression that the element is still loading.. It returns to default after a small…
alexanoid
  • 24,051
  • 54
  • 210
  • 410
5
votes
2 answers

How to use jquery blockUI

I want to use jQuery blockUI but on their site they have not given what js to include, what css to use. Can sombody please give me a example with complete js and css included to show how to use jQuery blockUI.
Sandeep Kumar
  • 13,799
  • 21
  • 74
  • 110
4
votes
3 answers

Begin and end request in UpdatePanel using jQuery

How get Method BeginRequest & EndRequest In UpdatePanel?(in jquery) function onBeginRequest() { //$.blockui; } function onEndRequest() { //$.unblockui; }
ashkufaraz
  • 117
  • 2
  • 9
4
votes
1 answer

DirtyForms does not work properly with $.blockUI

I'm using DirtyForms and $.blockUI plugin, the latter to change pages when clicking on links (in my app, some pages take a couple of seconds more to load and a visual feedback is fine). When I change field content and then click any link,…
Ivan
  • 2,463
  • 6
  • 39
  • 51
4
votes
3 answers

Why is my javascript/jquery not executing sequentially?

I have a button tied to a click handler -- which makes one or more AJAX calls, depending on how many items are in an array. I use the blockUI jquery plugin to show a message while the ajax call(s) are being made, then I show the results, and remove…
tresstylez
  • 1,809
  • 6
  • 29
  • 41
4
votes
2 answers

BlockUI in a Table - Not Working

I am "trying" to use BlockUI in a table to have one row blocked out when a user already selected something. I am able to block out all other elements on the page except anything in the table or the table itself. Has anyone else run into this issue…
Xtian
  • 3,535
  • 11
  • 55
  • 91
4
votes
1 answer

How to tell if jQuery BlockUI is blocking the page

Very similar to this question, except I'm not blocking a particular element, I'm blocking the whole page. So instead of: $('div.test').block({ message: '

Processing

', css: { border: '3px solid #a00' } }); I'm doing: $.blockUI({…
notAnonymousAnymore
  • 2,637
  • 9
  • 49
  • 74
3
votes
1 answer

Calling unblockUI in ajax success callback not working (IE 8)

I have the following code that I'm running on every page: $(document).ready(function () { $(document).ajaxStart($.blockUI); $(document).ajaxStop($.unblockUI); $("form").submit(function() { if ($(this).valid() == true) { …
goombaloon
  • 3,039
  • 8
  • 37
  • 55
1
2 3
11 12