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
2
votes
0 answers

jQuery block UI causes scroll event in firefox

I am using jQuery BlockUI Plugin and I am having issues with firefox as blocking an element fires scroll event on that element and in my case I have other actions bind to element scroll and mess up my app logic. Steps to Reproduce: Firefox Only…
django
  • 2,809
  • 5
  • 47
  • 80
2
votes
2 answers

Login Button Inside jQuery BlockUI

I made a log in form which is invisible and i'm using BlockUI to show the form. I can open the form and exit the form but when I click the "Login" button, it doesn't postback to the server. Any idea on how to make the log in button…
Or Betzalel
  • 2,427
  • 11
  • 47
  • 70
2
votes
2 answers

Block UI using jQuery

I use jQuery to block ui like this $('#send').click(function() { $.blockUI({ message: '

processing...

'}); send(); $(document).ajaxStop($.unblockUI); …
DarkLeafyGreen
  • 69,338
  • 131
  • 383
  • 601
2
votes
1 answer

Postback issue after adding jquery.blockUI to aspx

The button on the page is not doing a postback after I add
Jake Evans
  • 978
  • 5
  • 13
  • 33
2
votes
1 answer

jquery block UI malfunction on ajax loading event

problem: trigger errored when block UI is called on this code (function($){ function preloader() { $('a#preloader').click(function(e){ e.preventDefault(); var url = base_url + 'runtest/preloader'; …
yretuta
  • 7,963
  • 17
  • 80
  • 151
2
votes
1 answer

JQuery blockui & ASP.NET postback conflicts

Background: I'm using jquery blockui 2.31 on jquery 1.3.2, on ASP.NET 2.0. I'm using the dialog to show a (normally) hidden DIV as sort of a pop-up modal dialog, with ASP.NET server side controls in it (for simplicity's sake, an asp:Button). There's…
Broam
  • 4,602
  • 1
  • 23
  • 38
2
votes
1 answer

ajax loading between Views ASP.NET MVC 4 KendoUI

I have a web development using ASP.NET MVC 4 in progress, using the Web framework KendoUI that need use a Ajax Loader on time to order another "VIEW" on system. Ajax Loader will runs in the request "VIEW" with delay of request actions on system. So…
gabrielhws
  • 313
  • 3
  • 8
2
votes
3 answers

jQuery blockUI won't unblock

I have a nice modal that blocks out the screen while a post is being submitted via ajax. The blockUI starts fine, the modal displays, but the modal does not unblock when the Ajax is done posting, it just continues to…
damrakred
  • 59
  • 1
  • 1
  • 7
1 2
3
11 12