|
|
stackoverflow.com
- 2009-11-30 07:16:03
- Similar
- Report/Block
I am using modal dialog box from jQuery UI. I want to make a Ajax call to display the content in my dialog box. $(function(){ $('#myLink').live("click", function(){ $('#lbContent').dialog('open'); var url= $(this).attr("href"); $('div#lbContent').empty(); $('div#lbContent').load(url); return fal...
|
|
|
stackoverflow.com
- 2012-05-21 08:31:26
- Similar
- Report/Block
I have list to be deleted, and when user click it, it shows jquery ui dialog with button "Confirm" and "Cancel" When user click "Confirm" it'll call ajax function and give it postback and I want to close the dialog after that, i use command $(this).dialog("close"); and this is success. BUT..when I delete the other list the UI dialog doesn...
|
|
|
stackoverflow.com
- 2013-03-18 10:14:22
- Similar
- Report/Block
As the title suggests I'm having some IE7 problems. the problem I have right now is that my dialog doesn't work correctly. Well, the dialog itself works, but the button on it doesn't show up. that is, until I hover on where it is actually placed. Here's the jquery code $('#sessionTimeout-dialog').dialog({ autoOpen: false, width: 400, m...
|
|
|
|
stackoverflow.com
- 2013-04-18 14:14:29
- Similar
- Report/Block
I am using ASP.NET MVC 4 jQuery , and jQuery UI I have a dialog on my view. When I click a button the dialog pops up, takes the values on the dialog and send its through to a service. The service does what it needs to do and will either send back a blank message if it is successful or the actual error message. After this I need to check t...
|
|
|
stackoverflow.com
- 2013-02-28 19:18:25
- Similar
- Report/Block
Is there a way to tell from the backing bean if a Primefaces Dialog is opened in the browser? This is how I show a dialog on the facelet: When I look up the Dialog object from the ViewRoot , both dialog.isVisible() and dialog.isInView() returns true even though the dialog is not shown. Alternatively, is there a flag that tells me whethe...
|
|
|
stackoverflow.com
- 2012-04-10 13:32:45
- Similar
- Report/Block
I have a column in JQGRID with two controls (textbox & button) on click of button i should show a dailog box with partial view content. Here is the code i'm using function RenderModalPopup(rowid, event) { debugger; $("#dvedit_showDialog").dialog({ modal: true, autoOpen: false, width: 500, height: 800 $.ajax({ url: '/Edit/GetPopu...
|
|
|
stackoverflow.com
- 2012-06-18 20:53:39
- Similar
- Report/Block
I am having difficulty using JQuery UI Modal Dialog when submitting a form. The intent is you hit the submit button, the modal pop ups and depending on your selection from the modal the form either submits or it doesn't. Instead the modal pops up and automatically submits Front end: <div id="dialog" title="Basic dialog"> <p>P...
|
|
|
|
stackoverflow.com
- 2012-05-15 19:30:05
- Similar
- Report/Block
I am using jquerytools(http://jquerytools.org/) for the overlays modal dialog in my site. Now i have to show google map in modal window(jquery tool layover), but unfortunately google map is not loaded in overlay. What i am doing is just showing a complete form in Overlay(using ajax request, i got complete html for the form"that includes g...
|
|
|
stackoverflow.com
- 2011-06-15 02:07:01
- Similar
- Report/Block
I'm pretty much new to the MVVM architecture design... I was struggling lately to find a suitable control already written for such a purpose but had no luck, so I reused parts of XAML from another similar control and got make my own. What I want to achieve is: Have a reusable View (usercontrol) + viewmodel (to bind to) to be able to use i...
|
|
|
stackoverflow.com
- 2012-03-14 14:31:36
- Similar
- Report/Block
Working with simple modal, and I'm trying to prevent the close on escape. says it should be simple, but this $(document).ready(function(){ $("#login_modal").modal({ overlayCss: { backgroundColor: '#000', }, containerCss: { height: 485, width: 385, backgroundColor: "#f6f6f6", bo...
|
|
|
stackoverflow.com
- 2012-07-26 14:17:49
- Similar
- Report/Block
I'm sure its very simple thing, but can't find anything. I have a Dialog: $(function() { $(".dialog").hide(); $( "#dialog:ui-dialog" ).dialog( "destroy" ); $( "#dialog-message" ).dialog({ modal: true, autoOpen:false, width: 800, buttons: { "Accept": function() {alert("OK");}, "Close": function() {$(this).dialog("close");}} }); $(...
|
|
|
stackoverflow.com
- 2012-04-28 13:44:39
- Similar
- Report/Block
I use bootstrap modal plugin. But modal dialog is not shown in center. Why? my mistake? http://dl.dropbox.com/u/573972/stackover flow/bootstrap/modal.html <!DOCTYPE html> <head> <meta charset="utf-8"> <title>test</title> <meta name="description" content=""> <meta name="author" content=""> <...
|
|
|
|
stackoverflow.com
- 2012-08-05 15:31:11
- Similar
- Report/Block
I'm loading dialog page with jQuery UI & load function: $("#update_link").dialog({ modal: false, height: 370, width: 900, title: 'עדכן קישור', open: function () { $(this).load("<?= site_url()?>/links/show_update?id="+r el+"&rand="+rand()); } Inside the dialog there is input-text with id "add_time". In this input there...
|
|
|
stackoverflow.com
- 2008-11-14 00:22:46
- Similar
- Report/Block
I need to replace our Ajax Modal Popup controls with a JavaScript equivalent. We use this as a simple context sensitive help type popup. I did a quick browse but didn't see quite what I was looking for. I just need some text and a simple Close button/link, but I would like the page darkened below the popup, as it does with the Ajax modal...
|
|
|
stackoverflow.com
- 2012-08-05 22:14:42
- Similar
- Report/Block
I'm looking to understand the "best" way to transition to UITabBarController D (the main interface in my application) from either A or B - conditionally going through C. Meaning I'd like all of the following to be valid. A -> C -> D A -> B -> C -> D A -> B -> D A -> D C is a modal dialog which basically asks the us...
|
|
|
stackoverflow.com
- 2013-02-28 10:20:16
- Similar
- Report/Block
I've got a modal dialog that pop up then load and show the loader image then after a seconds it will hide and preview the "modalLogin" page. At first loading the main page and clicking the button for modal dialog to pop up it is fine, but when I close the modal dialog and click the button for modal again, the loading is mess up! So can an...
|
|
|
stackoverflow.com
- 2012-05-04 02:44:28
- Similar
- Report/Block
Working on a submit function from a jQuery dialog (based on question). Using codeigniter and jquery. I'd like to tie the ajax POST to the jquery dialog button click, but don't know what the selector should be for that button. I tried to use .ui-dialog-buttonpane button:first or "this" as the selector; neither worked. HTML FORM <?php e...
|
|
|
stackoverflow.com
- 2012-06-03 02:50:02
- Similar
- Report/Block
I am trying to get this dialog popup form to show up when this link is clicked but it does not work for me. I've been working on this for the past three hours and this is getting too frustrating for me. Here's my html <a href="#" id="contactUs">Contact Us</a> <div id="dialog" title="Contact form"> <p>appear now...
|
|
|
|
stackoverflow.com
- 2012-06-09 06:57:53
- Similar
- Report/Block
I'm having trouble getting jquery functions (datepicker and dialog) to work within an jquery ajax loaded tab. I keep getting a "datepicker is not a function" or "dialog is not a function" when I click the respective tab. I've done a lot of searching online for this problem and there are similar problems, but I couldn't find a solution tha...
|
|
|
stackoverflow.com
- 2013-05-04 07:53:21
- Similar
- Report/Block
I have model dialog, while model dialog open setting up body overflow:hidden this makes model window display half only. onclose resetting the How to get center display modal dialog?...
|
|
|
stackoverflow.com
- 2013-04-21 07:29:20
- Similar
- Report/Block
My app (written using MvvmCross and with MVVM pattern in mind) needs to display popup windows where user can choose of confirm certain options. So basically it's a classic modal dialog, but since the app's view model is implemented in a portable class library, it needs to tackle modality in a generalized sense - some platforms simply don'...
|
|
|
|
stackoverflow.com
- 2012-04-06 08:01:48
- Similar
- Report/Block
I have a dynamically generated list of links. Each link will request a different page to load. Depending on the link clicked I want it to fill the div with an ajax .load call. The thing is I want all links to reset and fill the same div. I am having trouble doing this without making a seperate div for each link, which isn't what I'm looki...
|
|
|
stackoverflow.com
- 2012-07-01 06:53:02
- Similar
- Report/Block
I have tried to scale this code down to the basics I have this jquery dialog. It has an iframe that is a populated JSP with a form When the user clicks the save button, i want to grab some of the form values from the iframe form. I am just not sure how to access those form fields(title,htmldata are the form field names) from the the Save...
|
|
|
stackoverflow.com
- 2011-06-07 01:59:14
- Similar
- Report/Block
I inject html for dialog via script like: $("#misc-cntr").append('<div id="chk" data-rel="dialog" > </div>'); then in ajax success callback I have: success: function(msg) { $('#chk').html(msg) // open dialog here // $('#chk').dialog('open') does not work Given above how can I open the dialog programatically?...
|
|
|
|
stackoverflow.com
- 2012-04-23 19:20:17
- Similar
- Report/Block
For some reason, when I try to use jQuery dialog in IE9, it doesn't apply any property to it leaving it at 0 which makes the dialog stay all the way to the left. It works fine in all other browsers including IE 7 and 8. Here's the code for initializing and opening the dialog: jQuery('#form-holder').dialog({ autoOpen: false, modal: true,...
|
|
|
stackoverflow.com
- 2012-05-12 17:42:03
- Similar
- Report/Block
I am returning data via ajax to populate a jquery dialog. The ajax is basically an html table with a variable amount of rows. I'd like the dialog to expand to show the rows, up to a certain vertical size (350px), at which point it should show a vertical scrollbar. So, this seems to work fine - the dialog resizes correctly depending on the...
|
|
|
stackoverflow.com
- 2012-03-04 18:21:07
- Similar
- Report/Block
I'm trying to add buttons to my dialog using Juice UI but it's not working or I'm doing something wrong. Following the example in documentation I changed this line <juice:dialog TargetControlID="_Default" AutoOpen="false" runat="server" /> <juice:dialog TargetControlID="_Default" AutoOpen="false" runat="server" Modal="true" Butto...
|
|
|
|
stackoverflow.com
- 2012-06-01 20:45:00
- Similar
- Report/Block
I have a form on which I would like the user to confirm one of the values when they try to submit, and I would like the confirmation to occur in a jQuery UI modal dialog. The code looks something like this: valuesCheck = function(event) { $j("#proposal-form-errors") .dialog({ modal: true, width: 600, title: 'Values Confirmation', bu...
|
|
|
stackoverflow.com
- 2012-03-07 15:41:49
- Similar
- Report/Block
I am trying to develop a screen consisting of buttons where clicking a button launches a custom dialog. The dialog has a ok button that closes it. I developed the following code for it which is giving me a null pointer exception. Can somebody help me out.... Dialog modalDialog; @Override public void onCreate(Bundle savedInstanceState) {...
|
|
|
stackoverflow.com
- 2013-04-04 19:56:07
- Similar
- Report/Block
I'm trying to display a partial view inside jQuery ui dialog window but I'm not having much luck with the load function. Dialog window does open but I dont see the content of the partial view. JS code is in a external js file. alert does display. $(document).ready(function () { $('#dialog-modal').dialog({ autoOpen: false, //width: 200,...
|
|
|
|
stackoverflow.com
- 2012-06-24 17:39:25
- Similar
- Report/Block
Have a problem when trying to close modal dialog in browser. The code is similar to the following one: 1) driver.switchTo().window(1); 2) driver.close(); 3) driver.switchTo().window(0); The problem is that code execution hangs on line number 2. I believe that's because of browser (none web) dialog saying "The web page you are viewing i...
|
|
|
stackoverflow.com
- 2013-05-02 04:27:26
- Similar
- Report/Block
The JQuery $('#dialog').html(htmlContent) displays the html as dialog's body . I want to display it like twitter bootstrap modal approach . For ex: some content... some content... Now , at time displaying dialog the 'title-bar' div content should be display in dialog's title header and same for diloag body should show 'ui-dialog-cont...
|
|
|
stackoverflow.com
- 2012-04-28 08:12:11
- Similar
- Report/Block
The classic way to is to do a modal is a div with the content (dialog) and a div with z-index lower (overlay) Then, I can bind the click event on the overlay and hide de content dialog. <div class="dialog">...</div> <div class="overlay" style="background-color:rgba(255, 255, 255, 0.9)"> But I have noticed that Pinterest...
|
|
|
|
stackoverflow.com
- 2012-07-03 17:00:53
- Similar
- Report/Block
I currently have an app that is using a twitter bootstrap modal box. The div that the modal is displaying is getting loaded with JQuery from /users/new action. Everything works great if the user enters valid data in the modal box submitted but if the data sent to params does not pass validation the controller redirects back to the new act...
|
|
|
stackoverflow.com
- 2013-05-02 08:25:14
- Similar
- Report/Block
I want to update a main form in the jquery UI dialog box with (external) html that is fetched using AJAX. Using firebug to verify the working of the code, I have managed to get the response i want. It shows the returned data (in fact, the script successfully works on a plain form without the dialog box. Here is the original AJAX script wh...
|
|
|
stackoverflow.com
- 2013-04-23 11:48:36
- Similar
- Report/Block
I have a Fancybox dialog that loads AJAX content. The user can click a "+" to add a row inside. As the rows add up, the dialog becomes higher than the screen size. A scrollbar appears, but the dialog can't be scrolled down , it keeps going back up. How do I fix this?...
|
|
|
|
stackoverflow.com
- 2012-04-26 14:28:02
- Similar
- Report/Block
This is a question has has been bother me for a while, so I am looking for opinions and solutions to clamp down on the possibility of the app being a security risk. I use jQuery for lots of things, but mainly I use it for processing jQuery dialog windows. A lot of times there is the need to grab a value from a field on the form, concatena...
|
|
|
stackoverflow.com
- 2013-03-22 15:19:39
- Similar
- Report/Block
I currently have a gallery which opens a modal pop up when you click on the thumbnail. What I would like to do is to be able to generate a unique link specifically for the modal (i.e.; www.mywebite.com/#link1), which loads it's content via ajax. If somebody was to send this unique modal link and send it to someone and they were to paste i...
|
|
|
cyberforum.ru
- 2013-04-19 10:54:10
- Similar
- Report/Block
Код: $('#dialog').dialog({ modal: true, autoOpen: false, title: "Сюда переменную" }); Как можно присвоить значение title в диалоге из внешней переменной nameSoilFactor? Код: $("#editPassport22").button().click(func tion(e){ var nameSoilFactor = $(".ui-selected").find("td:eq(2)").text( ); $("#dialog").dialog("open"); })...
|
|
|
|
cyberforum.ru
- 2013-03-19 14:42:13
- Similar
- Report/Block
Код: $(document).ready(function(){ $("#reg_step1_button").click(function(){ $('#reg_step1').modal('hide') }); $("#reg_step2_back").click(function(){ $('#reg_step2').modal('hide'); $('#reg_step1').modal('show'); }); $("#reg_step2_button").click(function(){ var login = $('#inputLogin').val(), password = $('#inputPassword').val(),...
|