Tagged Questions
The jquery-dialog tag has no wiki summary.
10
votes
3answers
2k views
Override jQueryUI dialog default options
I want to be able to create modal dialogs, with, for example
close: function() {
$(this).remove();
}
default option, without need to specify those on dialog creation, but somehow override those ...
6
votes
6answers
799 views
Using !important in jQuery's css() function
I have a dialog with an overlay declared like so:
.ui-widget-overlay {
position: absolute;
left: 8px;
top: 9px;
height: 985px !important;
width: ...
6
votes
4answers
2k views
Refresh (F5) not working in jQuery Dialog
I am using the jquery dialog widget to display a modal box. However when pressing F5, while the modal is open no refresh happens. Any idea?
Interesting Update:
Try this demo: ...
5
votes
2answers
174 views
JQueryUI Dialog display issue
I have the following code which builds a JQueryUI Dialog popup.
$j('<div></div>')
.html(message)
.dialog({
autoOpen: true,
bgiframe: true,
...
4
votes
3answers
297 views
PHP to jquery dialog() interaction issues.
I have an html button:
<button id="monitor" onclick="startMonitor('<?php echo $result_cameras[$i]["camera_hash"]; ?>', '<?php echo $result_cameras[$i]["camera_name"]; ?>', '<?php ...
4
votes
2answers
76 views
JQuery UI Dialogs: application-wide options
I have swarm of jquery-ui dialogs across my app. Every single time I need a new one, I write the following lines:
$('.another-dialog').dialog({
title: 'Another dialog',
autoOpen: false,
...
3
votes
1answer
197 views
JQuery Dialog : How to find clicked button inside the button clicked event
Im currently defining a variable no. of buttons for a jquery dialog like this
var buttonNames = buttonNamesString.split("|");
var buttonsOpts = {};
for (i = 0; i < buttonNames.length; ...
3
votes
1answer
147 views
How to make items float outside of Jquery Dialogs
I want to have a dialog that looks kinda like this:
I thought this approach would work but I guess I was wrong:
JavaScript
//Creates The Dialog
$('.ImageDialogDiv').dialog({
position: [98, ...
3
votes
2answers
370 views
jQuery UI dialog closeOnEscape not working for multiple open dialogs
My scenario:
When a particular element in Dialog1 is clicked, Dialog2 opens.
When you hit Escape to close Dialog2, works as expected and closes Dialog2.
Dialog1 remains and you would think that it ...
3
votes
2answers
159 views
jQuery generic code
I am using jQuery modal dialogs in my app to handle normal CRUD operations. In some cases I have even two stacked modal dialogs open.
I have then created two generic function in an external ...
3
votes
7answers
2k views
CKEditor instance in a jQuery dialog
I am using jQuery to open a dialog window with a textarea transformed into an instance of CKEditor. I'm using the jQuery adapter provided by the CKEditor team but when the dialog window opens up I ...
3
votes
4answers
1k views
jQuery UI Dialog problem if modal is set to TRUE
I'm developing an ASP.NET WebForm application with Visual Studio 2008 SP1 and C#.
I have the following ASPX page:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
...
2
votes
1answer
76 views
How to Scroll Flow JQuery UI Dialog
I have been trying to use follow scroll to move dialog together with user scroll but no success
<script>
$(function() {
$( "#dialog:ui-dialog" ).dialog( "destroy" );
$( ...
2
votes
1answer
104 views
MVC3 & JQuery Dialog won't Submit Form when Opening the Dialog
I have a dialog that is used for searching in an MVC3 application. The Search button on the dialog posts to an MVC3 Controller action that returns JSON of search results which then get parsed into an ...
2
votes
2answers
161 views
how to make jquery-ui.dialog revert a form on cancel
The following javascript allows a radiobutton set to control the alternate visibility of 2 <fieldset>s. I added a function provwarning to intercept a click on the radiobuttons and determine if ...
2
votes
3answers
70 views
JQuery Dialog Help
So I have a button on my UI that calls this Javascript function:
function OpenHistory(transactionId, spanThatWasClicked)
{
$.ajax({
type: "POST",
url: "<%= ...
2
votes
2answers
393 views
Editing a Jquery Dialog CSS
I am trying to edit my dialog box to have a transparent title bar that still shows an alternate 'X' to close it, but I am having issues here is my dialog css as of now:
/* Creates the 'X' used to ...
2
votes
1answer
916 views
jQuery UI Dialog and maxHeight in Internet Explorer
Here's my current code:
$("#DialogScroll").dialog({
bgiframe: true,
autoOpen: false,
maxHeight: 600,
width: 550,
modal: ...
2
votes
1answer
547 views
Jquery Dialog reading textarea value only once
I am using a dialog with a textarea. Upon clicking the ok-button the textarea's value gets sent to a server via ajax.
The first time the user writes to the textarea the value gets read correctly, but ...
2
votes
1answer
436 views
Javascript Overlay/Dialog Tracking with Google Analytics
Using javascript (jQuery to be precise in my case) I need to enable a dialog box to be tracked in Google Analytics as a unique page view, despite it being only a modal overlay.
For context purposes I ...
2
votes
1answer
71 views
How do I get this effect?
I seen many jquery plugins that do this and I am wondering if anyone knows how to do it(It would save me alot of time).
When you load up say the jquery ui dialog.
It pops up all flashy and the the ...
2
votes
1answer
222 views
jQuery Dialog window won't open
I'm not usually one to just post code and say "help", but I feel like I've exhausted every search. Any help as to why this doesn't work would be greatly appreciated. I'm not getting any type of ...
2
votes
2answers
107 views
jQuery Dialog : What is a jQuery dialog, is it a separate webpage or is it part of the existing webpage?
Whats the meaning of Jquery dialog:
Is it separate web page or its part of web page?
(I don't know well Jquery).
Thanks
2
votes
1answer
3k views
Jquery -Print Dialog Area :: Is exist plugin for printing jquery dialog content?
I don't know well jquery ui.
Is exist plugin for printing jquery dialog content/some code (Only print dialog content and not all webpage)
Thanks
2
votes
2answers
408 views
JQuery UI Dialog query dialog DOM
The following simply loads a jquery-ui dialog from an external html file.
$('#showdialog').click(function(e) {
var div = $('<div>loading...</div>');
div.dialog({
modal: ...
2
votes
2answers
606 views
How to apply the shake effect to a dialog with an embedded form
I'm newbie on this, I'm trying to apply the shake effect to a dialog that has an embedded form but not success on this.
When I try to trigger the effect
$("#restore_password").effect("shake",
...
2
votes
4answers
987 views
alternative to JQuery form.submit() to do ajax post
I have a mvc2 application with a view like this
<% using (Ajax.BeginForm("UserApprove", new { id = Model.id }, new AjaxOptions() { UpdateTargetId = "statusLights", OnSuccess = "HideButtons" ...
2
votes
4answers
1k views
ASP.NET: How to “reset” validation after calling Page_ClientValidate
I have an ASP.NET page with a jQuery dialog that is displayed to change some data. I am setting up the jQuery dialog so that when the user clicks the OK button it calls ASP.NET's
...
2
votes
1answer
549 views
Cookies and Jquery: Dialog Boxes
I am having difficulties creating a cookie (using the jquery cookie plugin) that will remember the position of all dialog boxes on the page (class .dialog). The dialog boxes are draggable.
This is ...
2
votes
1answer
2k views
JQuery, JSF and a4j:commandLink
I have a problem with using jQuery Dialog and Ajax submit in JSF.
I have the following code for displaying Dialog windows:
<script type="text/javascript">
...
1
vote
0answers
40 views
Is there a ready to use jQuery plugin that shows electricity label
I need to show a label (modal dialog) that shows the current electricity consumption. On hover it shows the full electricity label as on the picture below:
Move over the text should support ...
1
vote
3answers
52 views
Pop up Modal Dialog Box
Using this post I've been able to implement a dialog box that appears once the form is loaded. I would however like to change this so that the user clicks a button for the dialog to appear.
I've ...
1
vote
2answers
90 views
jQueryUI autocomplete not working with dialog and zIndex
I ran into an interesting issue with jQueryUI autocomplete in a dialog box.
My dialog HTML looks like this:
<div id="copy_dialog">
<table>
<tbody>
...
1
vote
2answers
72 views
Can a JQuery Dialog open another Jquery Dialog?
I want to open a partial view as a JQuery dialog that when I click a link to open another Jquery dialog over the one that is already open.
Can I do that? If it is possible, how can I achieve that?
...
1
vote
0answers
75 views
Execution on Jquery dialog twice in a row not executing properly as expected
I'm trying to create a Jquery dialog which is basically a form that accepts input from the user.
Instead of doing a regular "save & close" dialog, I am trying to do a "save, and do whatever, then ...
1
vote
1answer
77 views
ASP.NET ViewState validation when manipulating DOM
I'm, using jQuery and ASP.NET to show a dialog containing buttons. After some scouring, I got the buttons in the dialog to work by adding a tad more JavaScript to append the dialog to the form.
var ...
1
vote
2answers
494 views
DropDownList selected index changed Event inside jQuery dialog
Problem: when dropdownlist selected index changes, another dropdownlist should be populated depending on the selected value.
I am using webforms. In the masterpage I have this code which allows me to ...
1
vote
2answers
51 views
jquery dialog not showing scrollbars
I have this definition for the jquery dialog plugin:
$("#DonateForm").dialog({
modal: true,
autoOpen: false,
minWidth: 600,
maxWidth: 700,
minHeight: 250,
maxHeight: 350,
...
1
vote
1answer
147 views
jQuery dialog + ajax - Form data duplicate at the 2nd submission, weird behavior?
I am using MVC 3 with jquery dialog n $.ajax.
I got 1 View (Index.cshtml) with a "Generate button" and script as below:
// Once generate is clicked, call GenerateList action
...
1
vote
3answers
71 views
asp.net form controls are unreadable when in a jQuery dialog, how do you fix it?
I've got a prickly one. I have an asp.net web forms page. In the page I have a div tag that I've set to be used as a jQuery dialog. In the div is some jQuery controls. I get the dialog to open up and ...
1
vote
0answers
111 views
MvcContrib grid on jquery UI dialog
My goal is to have a text field and a button beside it that represents a lookup field (instead of combobox/dropdown) for many to one entities on edit form. When I click on the button, I am trying to ...
1
vote
2answers
328 views
('#').dialog is not a function error after using jQuery's .load() function
I have the following code:
<?php
$this->beginWidget('zii.widgets.jui.CJuiDialog', array(
'id'=>'mydialog',
// additional javascript options for the dialog plugin
...
1
vote
2answers
156 views
close jquery ui dialog when clicked out side the dialog box
I knew there are some links already exists related to this topic, but my problem isn't solved. so i've created a new one.
First, i need to close a pure jquery ui dialog when it's clicked outside the ...
1
vote
2answers
555 views
jQuery UI Dialog form with AJAX and validator only working normally once
I've been working on a simple JQuery dialog form that loads in via AJAX. It uses JQuery Tools to validate, and if successful, submits via AJAX and closes. Here's the code that opens the dialog via ...
1
vote
1answer
1k views
Display MVC3 Unobtrusive ValidationSummary errors in a jQuery UI Dialog
I'm looking to display MVC3's unobtrusive ValidationSummary errors in a jQuery UI Dialog. Specifically, I want to be able to have a "live" $('.validation-summary-errors').dialog(...);-like ...
1
vote
2answers
70 views
does jquery ui dialog support launching one dialog from (and on top of) another
i have a jquery ui dialog where a user fills out a bunch of user inputs and then submits. One of the fields is getting more complicated and has an advanced detail view so instead of showing all of ...
1
vote
8answers
410 views
How to make code wait for okay/cancel button selection?
I am using JQuery's $.dialog(), where I open a dialog with OK and Cancel buttons.
I would have expected that when the dialog opens, the code stops, and would first continue, when the user had ...
1
vote
3answers
574 views
Flowplayer playing over everything
I have a flowplayer that I am using with a few pictures below it. When you click on these pictures a dialog is created with an enlarged version of these pictures. The problem is the flowplayer will ...
1
vote
1answer
113 views
dialog does not come up after uploading asp.net mvc 2
my dialog does not popup after successfull upload? the upload works fine but $("#dialog-confirm").dialog does not work?
<h2>
upload Data</h2>
<script type="text/javascript" ...
1
vote
1answer
268 views
jQuery Dialog with nested form
I have a jQuery dialog with a nested form inside of it. The form contains an input box and a submit button. When the dialog pops up I want the user to only be able to fill it out, and nothing else on ...