Tagged Questions
The blockui tag has no wiki summary.
9
votes
4answers
17k views
How can I get a DIV to centre on a page using jQuery and blockUI?
I'm trying to convert Matt Berseth's 'YUI Style Yes/No Confirm Dialog' so I can use it with the jQuery blockUI plugin.
I have to admit I'm no CSS guru but I thought this would pretty easy even for ...
7
votes
5answers
1k views
Are there progress update events in jQuery ajax?
i have long running task that gets called using jquery ajax. i am using the block ui plugin to show "loading". is there anyway i can send progress messages back to the client to show progress and ...
5
votes
5answers
3k views
jQuery BlockUI vs. jqModal
I need a modal windows that tells the user to wait until I've finished some work on the server. Looks like both BlockUI and jqModal can do this.
Do you have any experiences with any of them? Pros ...
4
votes
5answers
1k views
jQuery block UI exceptions
I am using JQuery UI plugin blockUI to block UI for every ajax request. It works like a charm, however, I don't want to block the UI (Or at least not show the "Please wait" message) when I am making ...
3
votes
3answers
91 views
Jquery ajaxStart and blockUI
Using Asp.Net MVC 3 (Razor). I'm trying to add the blockUI plug in to show loading indicator when calling actions with @Ajax.ActionLink
It works fine if I use the default call of
...
3
votes
2answers
284 views
How to create page overlay while data is loading - asp.net/jquery/blockui
I'm trying to display an overlay that says "page loading...please wait" while data is being retrived from a sql server. I'm hoping to use the BlockUI plugin for this but anything will do. I have an ...
3
votes
2answers
549 views
BlockUI jquery-ui theme support in IE
This may be something I just have to live with, but does the blockUI plugin jQuery-ui theme support supposed to work with IE?
For some reason, the overlay always show up solid, with no opacity. The ...
2
votes
1answer
60 views
Jquery BlockUI plugin - blocking input field
I would like to know if JQuery BlockUI plugin can be used to disable a input field directly.
I see the samples on jquery plugin.
http://jquery.malsup.com/block/#element.
when I give just the input ...
2
votes
1answer
824 views
Using CSS3 Pie with jQuery BlockUI
I am using CSS3 Pie for doing cross browser border-radius and box-shadows. This works really great. But when used together with the jQuery blockUI plugin (using modal dialogs), CSS3 Pie functionality ...
2
votes
1answer
540 views
Unblock (jQuery BlockUI) after file sent to browser through response stream
I have an <asp:button /> that generates a PDF report. I want to use jQuery BlockUI to display a message that says: Generating Report..
Using: Response.BinaryWrite I am then sending the file to ...
2
votes
2answers
524 views
Intercept ajax requests with jquery to display BlockUI
Guys,
i'm trying to intercept ajax requests with jquery, to display a waiting message like with using plugin BlockUI, but how can i intercept requests sended by the UpdatePanel provided from asp.net ...
2
votes
2answers
1k views
Why does my div not center properly?
I'm using $.blockUI with jQuery to show a modal dialogue. The HTML looks like:
<div id="progressDialogue" class="mp_modalpopup">
<div class="mp_container">
<div ...
2
votes
4answers
1k views
JQuery BlockUI with UpdatePanel Viewstate Issue
I am using BlockUI to show a modal. Within the blocked modal I have an update panel. Within the update panel I have a textbox and a button that submits the content back to the server. Everything works ...
2
votes
3answers
842 views
JQuery BlockUI with UpdatePanel Viewstate Issue
I have an update panel within a div that I modal using the JQuery plugin BlockUI. Inside the UpdatePanel is a textbox and a button. When I enter something in the textbox and click the button I am ...
2
votes
4answers
2k views
BlockUI takes too long to block jQuery dialog
I'm trying to use the jQuery BlockUI Plugin to block a jQuery dialog while it performs a sorting algorithm. The function that sorts works like this:
doSort : function() {
$("#sort_dlg").block();
...
2
votes
2answers
4k views
How do I autosize a blockui dialog to the available visible area with JQuery?
I need to resize a div shown as a message in blockUI so that it fills the visible screen area less some hardcoded fudge factor (so width - 100 say). The premise is that I can show a smaller image on ...
1
vote
3answers
73 views
Blocking the UI using HTML and CSS
I'm writing a userscript. What I'm trying to do is really simple. I need to block the UI while the script does some background tasks. I saw this method in another SO question and I changed it a bit to ...
1
vote
4answers
76 views
Is there a jQuery package for blocking all UI except for an absolutely positioned DIV?
I have a project where I wish to open up a form at a specific location relative to other page elements. I'd also like to block the non-form page items while the form is open. I've played around with ...
1
vote
2answers
139 views
function is undefined
This Link is a sample
<script type="text/javascript" language="javascript">
$.blockUI({ overlayCSS: { backgroundColor: 'orange'} , message: '<img src="icon/wait.gif" /><div ...
1
vote
2answers
476 views
Block UI spinning preloader
I was wonder if anyone could shed insight as to how I can 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 ...
1
vote
2answers
556 views
Display iframe in jquery BlockUI message?
I've got a page that when a user clicks "Finished", several web service methods are called in the background and then when everything finished successfully the window is closed. Right now I'm using ...
1
vote
1answer
553 views
How to show BlockUI modal dialog on $.ajax() error()?
When I click a form's submit button, this calls the startValidateFormParameters() function.
In this function, I block the UI with BlockUI and run an AJAX request that validates some information in ...
1
vote
1answer
582 views
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 ...
1
vote
1answer
548 views
Display message afer save is successful BlockUI Update Panel
I want to display a status message after a server side postback. Currently to do this,
I use blockUI for blocking a
div while the save is in progress
I unblock the div with a custom End request ...
1
vote
1answer
367 views
ASP.Net C#: Call serverside function together with Jquery BlockUI
I want to show a Jquery blockUI when I click an asp:button that triggers a serverside function.
When the function ends, I want to do the unBlockUI.
Is this possible? If so, can I have an example, ...
1
vote
1answer
448 views
call blockUI on button onclick
I'm trying to call an blockUI after a buttonclick, but I can't get it to work.
What am I doing wrong?
Script:
$(function() {
$('#<%= btnSave.ClientID %>').click(function(e) {
...
1
vote
2answers
403 views
jQuery not working in AJAX loaded DIVs
In the HEAD of my document I load jQuery.js and also the blockUI jQuery plugin.
In the PHP I then use regular AJAX to load other PHP content into DIVs. In the original PHP jQuery and blockUI plugin ...
1
vote
2answers
828 views
Unlock UI with jQuery BlockUI Plugin after the Open/Save As dialog box appears
I'm using jQuery BlockUI Plugin to show busy message when a click event is fired.
In the scenario below, it's working fine. The busy message shows and locks UI on click event, and dissapears when ...
1
vote
1answer
107 views
JQuery plugin - BlockUI - works strangely from Visual Studio?
Using the BlockUI JQuery plugin I find strange behaviour from within an ASP.Net page.
I've implemented one of the BlockUI plugin demos (you can try out the original here - ...
1
vote
2answers
1k views
Jquery block UI when ajax starts
I am trying to show blockui when ajax starts like so:
// block when ajax activity starts
$(document).ajaxStart($.blockUI({ message: '<h1><img src="busy.gif" /> Just a ...
1
vote
2answers
600 views
Issue with DOM manipulation (blockUI or alert()) during a onchange request - prevents other event from firing
EDIT: I wrongly assumed this was caused by blockUI(); I was using Firebug's console.log to log the message but for the example here I changed to alert so you wouldn't need firebug to replicate. Once ...
1
vote
3answers
963 views
How is it possible that Request.IsAjaxRequest() is true from firefox but false from IE when using jquery post
i am trying to test jquery post. I am posting a form and want to update in ajax and replace with a success form over a div (seems like a common use case).
The following code works fine in firefox ...
1
vote
1answer
472 views
sIFR 3 issue (IE) with BlockUI and UpdatePanel
I am experience an issue using sIFR 3, jQuery BlockUI and an UpdatePanel where the page refreshes and the SIFR font disappears.
In the Javascript file I use to handle the blocking and unblocking of ...
1
vote
3answers
2k views
blockUI works but unBlockUI Isn't
I've implemented block UI as this request can take a little, time when the ajax request starts everything works as expected.
But when the ajax request finishes and the msgbox is shown, the UI doesn't ...
1
vote
5answers
6k views
Block UI untill a page has fully loaded : jquery, blockUI plugin
How can I block the UI when the page is still loading using jquery and blockUI plugin? If the page was being loaded using an AJAX call I know the workaround, but when the page is loading with a ...
1
vote
1answer
1k views
JQuery BlockUI - How to unblock UI after file download?
Using ASP.Net, JQuery and BlockUI, I'm trying to unblock the UI after a download file dialog is shown.
I block the UI when export button is clicked:
<script type="text/javascript">
...
1
vote
4answers
2k views
How do I interrupt an ASP.NET button postback with BlockUI and Jquery
I have an ASP.NET page with a number of ASP:Button instances on it. For some, I need to show a confirmation prompt and, should the user choose yes, the original postback method is called. Otherwise, ...
0
votes
0answers
38 views
jquery plugin 'blockUI' doesn't gray out screen in firefox
I'm attempting to use blockUI to block the interface of my web app while performing an ajax operation, but the screen was refusing to gray out for me in firefox (although the message box does show ...
0
votes
1answer
20 views
Get rid of “Please wait…” string while using blockUI
I am using the dialog
$("#xDialog").dialog({width: 700, position: 'top' });
and wanted to block user activity for the page when the above dialog pops up. So i use blockUI
like
$.blockUI();
It ...
0
votes
1answer
71 views
jQuery BlockUI Plugin
I need to add an overlay to Ajax events in my MVC application and have found the jQuery BlockUI Plugin. I have no experience in Jquery
I can get it to work fine with the default settings, ...
0
votes
1answer
45 views
Blockui is detaching events
I am using block ui to block the page and capture some information:
On the message div, I have 2 buttons. OK and Cancel.
If I set the click events on the page load:
$('#title-picker ...
0
votes
1answer
57 views
How to display controller action view in blockUI
I am trying to set blockUI message to display controller action view. I have tried everything but it doesn't display anything.
I have tried something like this:
$.blockUI({
message: ...
0
votes
1answer
65 views
Display ASP MVC View modally - best practice
I have a controller with Action methods and each method return some view that should be presented modally. For now I am using "blockUI" with "IFrame" in it. But I have some feel that this is not the ...
0
votes
2answers
46 views
Security with using blockUI Login screens
I'm not currently working on a coding project that is trying to implement this, but I am curious...
I've seen JQuery Block UI login pages that basically block out a site as soon as you navigate to ...
0
votes
2answers
94 views
jquery blockUI tell if page or specific element is blocked
Is there a way to tell if $.blockUI(); has been called but $.unblockUI() has not been called? Ideally this should be able to work for both blocking the full page and specific elements.
I'd expect it ...
0
votes
1answer
67 views
BlockUI on DOM Ready
I'm using the jQuery BlockUI plugin to add a loading splash to a page that takes a few seconds to load due to CAML queries. The problem is, the page loads before then the BlockUI displays for a split ...
0
votes
0answers
87 views
jQuery BlockUI won't close
Having trouble closing my BlockUI dialog. I've implemented several of these using the same technique but this one just doesn't seem to fire the click event for some reason:
<asp:Content ...
0
votes
0answers
88 views
Jquery - ajax - startajax and blockui
I have a website on multiple ajax requests. I use the blocking feature - Blocks.
I used for all ajax requests blocking.
$(document).ajaxStart($.blockUI).ajaxStop($.unblockUI);
I would like for ...
0
votes
2answers
164 views
Block UI Jquery plugin for a specific DIV
Anyone knows a JQuery plugin for BlockUI that allows blocking a specific DIV, not just the whole page. Thanks.
0
votes
2answers
321 views
blockUI not working with showModalDialog
How do I get the blockUI overlay to display before the showModalDialog is called?
$("button").click(function(){
$.blockUI({ message: '' });
...