The Dialog widget that forms part of the jQuery.UI library

learn more… | top users | synonyms

2
votes
0answers
262 views

jQueryUI Dialog position in Android (Droid Bionic)

I'm working on a web app involving several jQueryUI modal dialogs used for editing single data items. It works great on the desktop and in MobileSafari, but in Android, the position of the dialog is ...
2
votes
0answers
407 views

JQuery UI Dialog Modal - Re-showing dialog can't edit text

I have a div: <div id="mproEmailAccountPopUp"></div> I declare a Dialog var popupdiv = $( '#mproEmailAccountPopUp' ); popupdiv.dialog({ width: 650, autoOpen: false, modal: ...
1
vote
0answers
24 views

jQuery UI dialog closes on enter

When I open a jQuery UI Dialog widget and the content in the dialog contains a textbox the dialog automatically closes when I press enter. This seems to happen only when using IE9 or IE10. I do not ...
1
vote
0answers
56 views

why does jquery dialog() auto height, width fail?

I am using some jquery pop up dialogure var div = $('#mditem_temp'); var dlg = $(div).html(data).dialog({ height: 'auto', width: 'auto', ...
1
vote
0answers
72 views

jQuery dialog Title Icon Work Around Causes Other Options to be Ignored

I hope this isn't wasting anyone's time... I've been researching and trying different solutions for hours now and cannot get this to work. I am using jQuery UI 1.10.1. I want to add an icon to the ...
1
vote
0answers
43 views

Cursor doesn't blink in a ui dialog (Chrome only)

Here is a piece of code that shows an issue I'm having http://jsfiddle.net/XmqgA/ HTML: <div id="dialogg" style="display:none"> <input type="text" id="textinp" /> </div> ...
1
vote
0answers
25 views

display jquery dialog buttons vertically

I'm trying to display a Jquery.dialog with two buttons displayed vertically because I'm doing a mobile view. ¿How can I do it? $('#divPopUpTiempoEspera').dialog({ minHeight: 'auto', ...
1
vote
0answers
261 views

jquery 1.9.2 dialog auto resize

I am having a problem in making my jquery dialog to automatically resize to content, I am using jquery ui 1.9.2 and I am using the following settings: { autoResize: true close: function (e, ui){ ...
1
vote
0answers
60 views

jquery ui dialog positioning with position option

here is the html: <div id="dlgAddStrategy" title="sss"> ... </div> and the js: $("#dlgAddStrategy").dialog( { autoOpen: false, width: 350, modal: ...
1
vote
0answers
151 views

jQuery UI 1.9 dialog defaults

How can I set default options for the jQuery UI dialog in jQuery UI 1.9.x? Using the old method of $.extend(jQuery.ui.dialog.prototype.options,{ ...new options... }); doesn't seem to be working, ...
1
vote
0answers
224 views

Dynamic PHP pages in jQuery UI dialog box

I have a table that is built via PHP & MS-SQL that shows a list of stocks that our clients hold (I work in a stockbrokers). The simplified table looks like this: | + | Google | | + | ...
1
vote
0answers
161 views

Autocomplete doesn't fire select() on click element from list

I'm using jquery 1.4.4 and jquery-ui 1.8.24. I have a dialog, and inside that dialog a link. After clicking on that link, i show user an input with an autocomplete. When user select an item from ...
1
vote
0answers
344 views

php mysqli data in a table with delete button to jquiry modal confirm, then $.post to php to execute mysqli delete and refresh parent page

Here's the workflow I'm trying to accomplish. On my Users.html page load, I execute php code to fetch data from the mysql database, then create a dynamic table using php to loop and create the ...
1
vote
0answers
333 views

JQuery Dialog Re Open Error

I am fairly novice with JQuery. I am using the Dialog box to popup a window that displays a page from an external site. <script type="text/javascript"> $.fx.speeds._default = 400; ...
1
vote
0answers
164 views

JQuery UI Dialog: Called in focus event but element not focused after closing dialog

see Title. I'm showing a Jquery UI modal dialog to the user in the focus event of an Input element. When the dialog is closed I want that input to be focused. This does not happen. It seems that ...
1
vote
0answers
52 views

Applying Dialog Affect to Inline-Relative Div (without hover affect)

I'm trying to place a jquery dialog into a div container relative to another div container. In other words, I'm looking for it to appear in-line and have it's appearance affect the elements ...
1
vote
0answers
139 views

Custom link on Dialog jQuery

I have an application with asp.net mvc and I use jquery on client side to do some things. I have a page that shows a grid, and in this grid I have two links: - One to open a new page and print a ...
1
vote
0answers
284 views

How do I get TinyMCE working in a jQuery dialog on firefox?

I need to get a tinymce editor working in a jquery dialog. In normal circumstances the tinymce editor will not be active and usable in an invisible dialog. It is required re-initialize the tinymce ...
1
vote
0answers
445 views

Jquery UI .dialog Opens and Closes Immediately with .click

I have a dialog attached to a link that opens but closes immediately. No js errors in the console. Heres the code: <script type="text/javascript"> $(document).ready( function(){ $( ...
1
vote
0answers
285 views

Getting URL parameter from Jquery mobile UI

How do i get the URL for the dialog( using jquery mobile UI which is a .jsp page with elements).I am passing parameters to the dialog as xyz.com?id=123&url=dlfwlfjwejpfwjfef; So i want to get ...
1
vote
0answers
231 views

text fields becoming non-editable when used in jquery ui draggables

I am using jquery draggable UI dialog plugins in my page like the one in the shown image. In the image, the area's that are marked in yellow color are all sortable and draggable. the textboxes ...
1
vote
0answers
64 views

jQuery-ui-dialog - Dropdowns dont stay open

Using the dialog and adding different form elements. My dropdowns will not stay open when you click the arrow button on the dialog. You can HOLD down the button, but the click just shows the ...
1
vote
0answers
375 views

Getting Google Chart into Jquery Dialog window (using AJAX)

so the problem is as follows: I have a page lets call it somepage.phtml with originally PHP values encoded in json and added as values to drawVisualization function (the, data is there, it's fine) ...
1
vote
0answers
239 views

jQuery Mobile - Dialog not applying jQuery styling second time around?

I have a jQuery mobile dialog which works perfectly the first time it's loaded, but once the dialog.close(); button or back button in the browser is clicked and the dialog is initiated again, the ...
1
vote
0answers
222 views

jQuery UI bug: dialog close changing radio buttons

ANOTHER EDIT The problem occurs when the dialog close is called. I'm pretty sure this is a bug, because there's a history of related bugs 1, 2, 3, all marked as fixed. I get this problem with modal ...
1
vote
0answers
233 views

Jquery ui dialog causing problems with embedded script tag

i have a problem using jqueryUI dialog when i include a <script> tag inside a div and use .dialog() in that div, the javascript gets executed twice. as far as i understand this is because the ...
1
vote
0answers
681 views

Jquery Validation submitHandler Not Working from Jquery UI Dialog

Ok - I have a modal dialog form using a jquery-ui modal dialog, and the dialog buttons are supposed to submit the form. When the Add Utility button is clicked, the form.submit action is called, but ...
1
vote
0answers
1k views

Edit button in a view details popup in MVC 3 using jQuery

I am currently in the process of setting up an MVC entities page with the ability to list all entities of a certain type, using jQuery popups to create new entities, edit or delete existing entities. ...
1
vote
0answers
314 views

Multiple JQuery UI Dialogs open at once - positioning

I would like to open multiple JQuery UI Dialogs and have them arranged without overlap. Ideally I want to apply the equivalent functionality of {float: left} to each dialog, so that the first to open ...
1
vote
0answers
487 views

Ruby on Rails 3 - Using Jquery dialog modal form with a has many relation

Hello People I've working with jquery for a few days, and I've found an example of dialog modal form that works fine. Here is the example. Since a couple of weeks ago I've been working with ...
1
vote
0answers
268 views

jQuery Dialog opens only once

So I'm relatively new at coding jQuery, and although I can use most methods fluently, I still consider myself a beginner. The problem I have is that the jQuery UI Dialog only opens once after ...
1
vote
0answers
3k views

jQuery ui Dialog: Turn off 'Draggable' for Dialog content

I'm having a brain fart and cannot seem to get the content of my jquery ui dialog to stop being 'draggable'. I turned off the draggable setting on the actual dialog pop-up, however, the content inside ...
1
vote
0answers
397 views

creating links `next/prev` inside JQuery UI dialog

I have a photo thumb list: <div> <a href="#" class="open-dialog" id="17"><img src=/upl/thumb_100_100_2144473683ec519.jpg /></a> </div> <div> <a href="#" ...
1
vote
0answers
194 views

jQuery UI dialog slower in new version

I was preparing to update our jQuery UI library to the new version when I discovered that it is significantly slower than the one we are using currently at opening dialogs. Opening the same dialog ...
1
vote
0answers
665 views

Report Viewer drill through inside jQuery Dialog

We have a ssrs report viewer inside a jquery dialog. It works fine until you load a report which drills through to another report using jump to report navigation. When you click on the link to drill ...
1
vote
0answers
608 views

Animate jQuery UI dialog when content expands or contracts while staying centered

I have a jQuery UI dialog popup, and then inside are buttons to show/hide content. If one button is clicked, when the content expands, I simply call the following to recenter the dialog on the screen. ...
0
votes
0answers
17 views

jQuery popup dialog opening reloads another dialog

After Ajax request I write the result in myDialog and open the dialog. When closing myDialog a waitDialog is shown. But after update to jQuery 1.9.1 now the contents of the myDialog are reloaded when ...
0
votes
0answers
36 views

jQuery UI MultiSelect Widget search filter not receiving focus when in a jQuery dialog,

please copy and paste the code below into a blank document and save it as e.g. multiselect-widget-example.htm and then open it in your browser to test the issue I'm experiencing. Please remember ...
0
votes
0answers
7 views

jQuery UI dialog-confirm does no pass form submit button value

I have two submit buttons in POST method <button type="submit" value="Update" name="upd" id="upd" >Save changes</button> <button type="submit" value="Process" ...
0
votes
0answers
11 views

Struts Jquery plugin dialog removes div

Hey all I am currently having issues with my Jquery Dialog function. The first time I open the dialog box everything is cool. However, once I close my dialog box and open it again, the dialog is empty ...
0
votes
0answers
55 views

jQuery dialog issues

We have an application that has a very large Administration piece. We are using jQuery dialogs on a few of the pages that contain cascading dropdowns (data driven using ajax\json) and jQuery date ...
0
votes
0answers
106 views

jQuery UI: modal dialog focus bug?

I am trying to create a modal dialog box that has a vertical scroll for content that overflows. For demo purposes, this dialog box contains an anchor and a bunch of divs (to overflow). Here is my ...
0
votes
0answers
12 views

Buggy Aviary implementation within a JqueryUI dialog

I'm trying to use the Aviary photo editing library in a large web application. When I implement the Aviary editor on any of the pages it works perfectly fine. When I implement it within a jQueryUI ...
0
votes
0answers
40 views

How to use xupload yii extension

I want to use upload multiple with xupload extension, but didn't work my code? this Configuration config.php 'aliases' => array( //If you used composer your path should be ...
0
votes
0answers
196 views

MVC: Load PartialView Ajax form in JQuery UI Dialog

I have suceeded in loading a partialview made of an Ajax form in Jquery Dialog. The ajax form is similar to this @using (Ajax.BeginForm("AjaxViewModel", "Home", new AjaxOptions { UpdateTargetId = ...
0
votes
0answers
93 views

Jquery UI Dialog + .ajax()

I have a PHP page(grid.php) that is loaded in a main page via jquery.load (main.html) by way of menus. That grid.php has a link that pops a jquery ui dialog. It has a dropdown box whose value i need ...
0
votes
0answers
38 views

jQuery modal will not close in IE7

I have added two links inside the dialog box which when clicked I would like to close the modal. This works fine in all browsers so far except IE7. Here is the code to close: function idConfirm(){ ...
0
votes
0answers
46 views

JqueryUI Dialog from AJAX - can't destroy dialog completely

I'm creating a dialog from an ajax call - the dialog opens perfectly and the first time everything is working like a charm, submitting a form in the dialog. After saving the formdata, I use ...
0
votes
0answers
79 views

Is there a way to always load a page as a dialog?

I'm using ASP.NET MVC 3. Every time I present the View Novo to users, I need open this View as a dialog. Controller public ActionResult Index() { IndexViewModel viewModel = new ...
0
votes
0answers
54 views

Dynamically sized jQuery UI modal dialog window

How do I go about changing the total size(height and width) of my modal dialog windows dynamically when resizing the browser window or otherwise define different sizes for different screen ...

1 2 3 4 5 7