modal

cocoa iphone load modal view without seeing it

Hey there, Is there a way to load a view modally without seeing it? I need to access methods on the modal view controller which in turn set properties of UI components in a XIB. I want to set those properties, but I don't want to see the view right away. I want to reveal it when the user rotates the phone. Everything is working, exc...

Jquery library/plugin for interactive modal popup?

Wondering if there's any jquery library/plugin that can easily perform the following. At main page Susan Liew (click here to update user profile) When click, will trigger a lightbox type 2.0 style modal popup to show up a user profile modification form. This should be ajax, jeffrey's user profile primary key will pass into the moda...

Modal functionality dissapear after "find" or "reset" clicked

Hi guys. I'm having an issue with modal search. Modal pop up shows ok, but after "reset" or "find" is clicked the modal functionality disspear and although search box remains active you can click into jqGrid. Don't know if is a problem with the overlay. Ideas? jQuery("#listNoticias").jqGrid({ url: '<%= Url.Action("ObtenerDa...

How to keep scroll position in SimpleModal dialog

How is it possible to keep the scroll position of a scrollable div within a modal dialog when it is re-opened? I modified the basic downloadable example of simplemodal as follows: <div id="basic-modal-content"> <h3>Scrollable Modal Dialog</h3> <div style="width: 150px; height:100px; overflow: auto;"> a<br>a<br>a<br>a<br...

Get the current active modal dialog in java

I have a small dialog that is independent from the rest of the whole project. There are several threads that can call this dialog. The problem is a modal JDialog that shows the progress of the current task. My dialog will be opened behind the progress dialog. There is no possibility to get this dialog. Is it possible to get the current...

Simple modal div in jQuery?

I have tried almost all of the jQuery Modal plkugins I can find on the net but they are all much to bulky for what I need. I dont need all the fancy features, I want to be able to open a div and have the background of the page go transparent grey like the photo below and have my div be on top of it, that is all I need to do so I would l...

disabling modal popup in jqgrid

I want to create a custom message without using the modal popup in jqgrid. Is there a way to disable it? Or is there a way to change the contents of the modal? ...

Multiple calls with Simple Modal OSX Style Dialog

I am using Simple Modal, the OSX style version. I have two calls to the modal and therefore two versions of content. When either of the buttons is clicked it selects only the first lot of content. There is nowhere to put a hook on the content like most modal windows as there is no javascript on the page to add parameters... only an ext...

How to close a jquery modal dialog and refresh parent page

Hi, i'm not able to close a jquery dialog. Below are my code. I have a parent page called academic.asp which will open a modal dialog by jquery plug in. function openPopupDialog(location, windowTitle, heightValue, widthValue) { var $dialog = $('#dialogWin').load('submission.asp') .dialog({ autoOpen: false, ...

How can I make a modal window(url) refresh to another modal window(url) via facebox

This is ultimately what I want to achieve. User clicks on Page1 Modal window opens. User clicks on Page2 Modal window refreshes to that page. ///// But this is what happens User clicks on Page1 Modal window opens. User clicks on Page2 Page changes to index2.html. ...

JavaScript Modal is Too Big for Screen

I have created a modal window using the Prototype JavaScript framework and the following object: var Modal = Class.create({ animate: function () { this.step = (this.step + 1) % 31; if (this.throbber) { this.throbber.setStyle({ backgroundPosition: 'center ' + this.step * -33 + 'px' ...

Is it better to show ProgressBar UserForms in VBA as modal or modeless?

Is it better to show ProgressBar UserForms in VBA as modal or modeless? What are the best practices for developing progress indicators in VBA? Modeless UserForms require the use of Application.Interactive = False, whereas Modal UserForms by their very nature block any interaction with the application until the core procedure has finishe...

What do I do if I want UINavigationController functionality without a navigation controller?

I know that a UINavigationController has good view pushing methods. But let's say that I don't want to use a UINavigationController because I don't want the bar on the top of the screen. Is there a specific way to push and pop views as I want them? Also, when should I use presentModalViewController and when shouldn't I? Thanks, Anthony...

Make iPhone status bar disappear when displaying a modal view?

I want to display a modal view, and want it to cover the iPhone's status bar. I tried setting the modal view controller's wantsFullScreenLayout property to YES; I also set its parent's property to YES as well. This doesn't work, presumably because the modal view displays below the main window's content, which includes the status bar. M...

ASP.NET MVC Postback on Modal Dialog/ Popup

Hi all, I have a link on an asp.net mvc view which opens a modal popup in which a second MVC view is rendered. The view in the Modal popup exposes several features which trigger a postback. The postbacks fire the correct controller methods but when i return the updated view the View itself is render as opposed to being rendered in the ...

Jquery Cookbook Modal button

I've been at this for two days and can't seem to get it. Basically, I'm using the JQuery Cookbook modal from scratch. My problem is the form html page loads fine but the code will not recognize my submit button. Here's the relevant parts of the code: Separate HTML: <div id="contact"> <form action="" id="register_form" method="post"> ...

Jquery Modal Window preceeds download request

Hopefully this will be basic but if I create a Jquery click connected to a link that is supposed to download a document. However, before the download is initiated, I want the user to complete a quick profile form. Suppose a I use a <a href="ProfileFormToBeCompleted.html" class="modal"> in the html page and the following Jquery function...

@font-face issue in IE8 after using modal window

I am using @font-face on a site I am working on, and all is working perfectly cross-browser until I use a modal window to display an iframe. When a link is clicked within the iframe or a form is submitted, Internet Explorer 8 looses the @font-face styling and reverts to Arial. This problem also occurs if a modal window is opened with a...

button click is not working

Hi, i am having a button on a modal pop up div. But i am not getting the click event of the button. I am calling this button inside a gridview. Whenever i call it outside the gridview it works perfect, but whenver i call it inside that gridview, it does not work. The popup window appears and disappears as desired buyt the click event...

modal dialog in jquery that doesn't block the whole site

how to achieve this? let's say that I have 3 dialogs A, B and C. I can work with them at the same time by having them one next to the other, drag them around, put them one on top of another, etc... now, at some point, the B dialog opens a dialog X. I must still be able to work with dialogs A and C but I must not be able to work with B un...