|
|
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-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
- 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
- 2012-05-16 08:54:13
- Similar
- Report/Block
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 dialog is not wrapped in jQuery UI tags and no styling is applied to it. It works the first time but never again after that. I am assuming it 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
- 2012-03-12 12:48:17
- Similar
- Report/Block
when I open jQuery dialog.there is 2 buttons 'ok', and 'cancel'. When dialog opens , I want 'ok' button to have focus by default. and after that when I press ENTER key, it should perform the actions written on 'ok' button.
|
|
|
stackoverflow.com
- 2012-04-27 02:50:08
- Similar
- Report/Block
My JQueryUI model dialog has some radio buttons and input boxes so users can select a date range for downloading information. The dialog was initailized with two buttons, Download and Cancel. The Download button's function triggers an ASP.NET link button to submit by evaluating it's HREF property, then it calls "dialog('close')" to close...
|
|
|
|
stackoverflow.com
- 2011-06-06 23:21:22
- Similar
- Report/Block
I am trying to get the custom dialog to close on button press //set up dialog Dialog dialog = new Dialog(BrowseActivity.this); dialog.setContentView(R.layout.about); dialog.setTitle("This is my custom dialog box"); dialog.setCancelable(true); //there are a lot of settings, for dialog, check...
|
|
|
stackoverflow.com
- 2010-10-28 19:53:47
- Similar
- Report/Block
I have a TemplateField in a GridView in an UpdatePanel with a button called btnDelete . Rather than the standard OnClientClick="return confirm('Are you sure?')" I'd like to use jQuery Dialog. So far, I'm able to set the jQuery using btnDelete.Attributes["onclick"] and setting the jQuery Dialog code in the code-behind. However, it posts...
|
|
|
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-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-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-05-11 22:36:06
- Similar
- Report/Block
I understand that jquery needs a selector to work with it like a class="x" on all links with class="x". But what I do not understand is why does jquery need a selector like #dialog that points to a div because the dialog is doing nothing with the div. In my opinion a window/dialog should have nothing to do with a div because the dialog is...
|
|
|
stackoverflow.com
- 2012-04-17 13:24:54
- Similar
- Report/Block
i need to popup a div like the jquery fancybox with elastic effect i am using the below coding but it not works... HTML: <a href="#" id="LoginAnchorLink">ClickME</a> ; <div id="dialog" class="Popup" style="display:none;"> content of the div have to be popup </div> .Popup { position: fixed; background-color: #ffff...
|
|
|
stackoverflow.com
- 2012-03-01 19:45:08
- Similar
- Report/Block
I'd like to pop up a dialog that is not full screen, i.e., it "floats" above the page which opened it. Here is what I am trying: <div data-role="page" id='Page1'> <div data-role='button' id="Button1">Open Dialog</div> </div> <div data-role="dialog" id='Dialog' style='width:200px; height:100px; top:100px; l...
|
|
|
stackoverflow.com
- 2013-03-11 12:08:31
- Similar
- Report/Block
I have a div with id='user'. If a guest is visiting there is a login form and register form. I'm using tabs to switch between login and register forms. jQuery(function() { jQuery('.box a').livequery('click', function(e){ switch_tabs(jQuery(this)); }); switch_tabs(jQuery('.defaulttab')); function switch_tabs(obj){ jQuery('.box-conten...
|
|
|
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-04-23 11:53:51
- Similar
- Report/Block
I'm trying to use the hoverintent plugin (http://cherne.net/brian/resources/jquer y.hoverIntent.html) to replace the following javascript code: $('#top').on('mouseenter', '#nav', function(e){ $('#top ul').slideDown(300); $('body').on('mouseleave', '#top', function(e){ $('#top ul').slideUp(300); My html is: <div id="main"> <div...
|
|
|
|
stackoverflow.com
- 2012-05-16 13:40:50
- Similar
- Report/Block
I have a problem with jQuery mobile: I have a sign in button, that should pop up the login form when clicked, but when the page is loaded the popup div is not hidden... I tried about a hundred of different ways to let it hide (by adding some jQuery mobile attributes), but nothing would work. the code: <link rel="stylesheet" href="http:...
|
|
|
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
- 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
- 2013-06-03 09:46:02
- Similar
- Report/Block
I have an attendee list with records of whom have filled out the event form. Each table row has a delete button attached so that the administrator can delete a record from the database. I have tried to attach a confirmation dialog (yes/no) to the form when a delete button is clicked. Before i attached the javascript it was deleteing a rec...
|
|
|
stackoverflow.com
- 2012-03-16 21:45:40
- Similar
- Report/Block
How would you get the selected radio button, and if it is a specific option display a dialog box with a message to the user?...
|
|
|
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-03-26 18:43:02
- Similar
- Report/Block
can somebody help me and tell me why I can't center the JQuery UI Dialog look at this link the you can "view source" to see the code My Dialog...
|
|
|
stackoverflow.com
- 2013-03-13 13:57:13
- Similar
- Report/Block
Yesterday I asked a similar question and it worked for one button and that was a submit button, now my bosses want the cancel button "to do things to". this is what I have tried : I got this snippet of code from this question and it seemed to work for the OP. I have two buttons Cancel and submit : I have read and understood the above (...
|
|
|
stackoverflow.com
- 2013-04-11 16:09:20
- Similar
- Report/Block
I have the following html code Log in to create custom dashboard This is my jquery code $(".login").click(function() { $(this).children('a').removeAttr("href") ; $(this).attr('class','disabledlogin'); .............. So when I click on "Log in" link the dialog appears and I need to disable "Log in" link. But even if I change the class a...
|
|
|
|
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
- 2013-03-06 23:06:01
- Similar
- Report/Block
I'm trying to dynamically update the text on a jQuery mobile button. The button is actually a link which is styled as a button. According to the jQuery mobile documentation , you should call button("refresh") if you manipulate the button via javascript. However, when I do this, the button's style goes a but crazy - it gets shrunk to half...
|
|
|
|
stackoverflow.com
- 2012-03-20 08:08:42
- Similar
- Report/Block
I've been using jQuery UI for some basic page enhancements. Button and input styling and modal dialog boxes. Now I've come across Bootstrap and it looks pretty good. Has anyone any experience of going from using jQuery UI to Bootstrap? This what I am thinking to do but before I do this I'd like to be aware of what problems I could face.
|
|
|
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-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-03-28 09:43:05
- Similar
- Report/Block
i am using jquery dialog in which i put 2 textbox and 1 button.which works fine ,everything renders.on button in dialog i am appling validation on my textbox if its empty.so the validation work fine for the first time when page renders but not working after that on another dialog. have a look at my both function. the first one is for di...
|
|
|
stackoverflow.com
- 2012-06-12 22:43:04
- Similar
- Report/Block
I have trouble with replacing certain values in a variable that contains captured html. I'll let the code explain what I want to accomplish. lest say: last_id = 1; data.id = 2; the code: /*prepare new edit,delete button*/ var controls = $('table#option_groups tr:last td:last').html(); outputting var controls will return: <a href="stuff...
|
|
|
stackoverflow.com
- 2012-04-23 00:26:43
- Similar
- Report/Block
From the jquery UI you can now apply .button() to an anchor, a button, a submit button etc. I've got a simple asp.net button that looks like this: <asp:Button ID="btnFindSearch" runat="server" Text="Search" onclick="btnFindSearch_Click" /> It is however inside of an updatepanel like so: <div id="dialog" title="Select Address"&...
|
|
|
|
stackoverflow.com
- 2012-04-01 09:41:28
- Similar
- Report/Block
What is the best way to hide all links except for one in javascript? (jquery is okay) Say I have the following: <div id="choices"> <div><a href="#">A<></div> <div><a href="#">B</a></div> <div><a href="#">C</a></div> </div> I want to make it such that...
|
|
|
stackoverflow.com
- 2012-05-25 20:37:43
- Similar
- Report/Block
I have an asp.net mvc application and I'm using Webgrid to list customers. I want to edit the customers' data on the jQuery Dialog, so, I think to do an action on my controller returning a PartialView is the best way. The problem is that this PartialView has some javascript code to validate this input (I'm using jQuery Validation to valid...
|
|
|
stackoverflow.com
- 2009-11-30 22:56:39
- Similar
- Report/Block
i have the following code that is not working properly, what the hell am i doing wrong??? $('#gallerynav ul li a').click(function(){ var href = $('#gallerynav ul li a').attr('href') $("#galleries").children().fadeOut(500 , function(){ (href).fadeIn(500) i have the href of the links set like this link...
|
|
|
|
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"); })...
|