modal

Coda Slider Tab Navigation

I am using Coda-Slider for my website and I want to know if there is a way to change the content of each tab. For example, the user navigates onto tab2 where I placed a link to redirect the user to another page. Is there a way NOT to navigate away from the page nor the tab but instead load the link inside the tab? I was thinking it would...

Problem with modal in multi-thread app

I have application which works with 2 threads in first I have main windowa and almost whole logic, in other I run a preloader which is shown when user have to wait a a little more time for an results. When i introduced the second thread into my app I have seemed a different occurrence. When i open some modal window in main thread and i ...

Return Value from a Modal Dialog (IE + Safari)?

The following works in IE, but how can I get it working in Safari? My pop up script: strRet = window.showModalDialog(url,0,'Status:NO;dialogWidth:750px;dialogHeight:500px') ; form.field.value = strRet ; In the modal: window.returnValue = myValue window.close thanks! Geoff ...

jqGrid loadin hanging problem

Hi all, I have problem with jqGrid. I am loading data from pagemethod, I have managed to serialize to json and display data, but jqGrid seems to hang on loading-I see 'loading...' title and rest of page is disabled, like jqGrid is in modal state...how to exit this state when I populate grid? thanx <<<<<<<<< solved..it was some nasty i...

jquery fancybox - prevent close on click outside of fancybox

I'm using the Fancybox plugin for my modal windows. It seems like no matter what options I use I can't prevent the fancybox modal window from closing when the user clicks outside of the fancybox modal window (grayed out area). Is there a way to force the user to click the X or a button that I trigger the close event? This seems like i...

What CSS/Script is stopping "bgiframe" from working in IE6 on this page?

Hi, Does anyone have the expertise to quickly figure out why jquery bgiframe's plugin is not working on this page? The code is basically the exact code from the dialog plugin demo page. http://webdev.peelregion.ca/health/destinationparenthood/template.htm Our site template seems to not play well and I am trying to determine what exact...

Jquery Modal/Dialog with Fullscreen option

Hi Guys, I am looking to use a Jquery modal/dialog plugin for my site to view content. I am currently using Thickbox which works well but it does not have a fullscreen option, when I say fullscreen I mean fill the whole browser window. Does anyone know of any good modal/dialog plugins which can expand fullscreen? Cheers Eef ...

Modal Popup for Selecting an Option [jQuery]

In my application I want to present a list of choices for a user to pick from in a modal popup. I'll be using the value they select in the 'parent' page. I've looked into nyroModal, but none of the examples include a return value after the modal closes. I'm assuming this is because its opening up the content with a new HTTP request, wh...

Is it advisable to use the same xib in a UINavigationController view and a modal view?

I have a view (and corresponding view controller) in my iPhone app that allows the user to edit settings for the application. This view is accessible via a menu (a table view). I use pushViewController in my UIViewController subclass to get it shown. When I do this, it appears as I expect - the nav bar appears on top of the xib, and the ...

Best way of validating modal dialog fields?

I often need to have modal dialogs for editing properties or application configuration settings, but I'm never really happy about how to validate these, and present the validation results to the user. Choices and tools are typically:- Design UI so that invalid choices are simply impossible - i.e. use "mask edits", range limits on spin...

Flex: Cannot tab between controls on a modal popup.

Steps to reproduce: Create a modal popup to popup with popupmanager (mine is a group with a skinnable container inside of it) Put field components (textinputs) on the modal popup Attempt to tab between controls. Tab switches to controls behind the modal-popup and ignores the fact that the modal is there. The tab loop only contains ...

How to make a JFrame Modal in Swing java.

Hello, I have created one GUI in which I have used a JFrame. How should I make it Modal? ...

SimpleModal Basic Modal Dialog: how to open unique windows within the same page?

Hi there, I'm using the SimpleModal Basic Modal Dialog and am having trouble using it to open more than one unique window on a page (I don't need them to open at the same time or on top of one another). I tried adding another class and calling out that class in my js file, but I'm not getting it. Here is my example page, where I have t...

Problem with ajax modal popup extender

Hi Friends!! I have a Button which is having modalpopupextender which is working absolutely fine no problem at all, but before the modalpopup appears i want to validated text box control if it is not valid then modalpopup should not appear other wise it should work as usual.. does anybody having idea. ...

jquery modal form

I am having an issue with a modal form. I have a text link that opens the modal form(working). Once the form opens it shows a registration page(working). The buttons used to submit the form are through the modal form. For example: $("#register-dialog").dialog({ bgiframe: true, autoOpen: false, height: 450, width: 400, modal: true, butto...

Trouble with Multiple Modal Views

The issue that I'm having is that I have My start page, then the user can select a button from there to open a settings page (Modal View). From the settings page the user selects the switch to turn on the PIN code page (another Modal View). I have been killing myself trying to implement this simple process. The app has a Nav&Tab Bar fram...

Help with a jquery modal window

Hi All As part of my efforts to learn jquery, I'm making my own modal window. Everything seems fine so far, but I just can't get clicking on the overlay to fire the close. Anyone any ideas why? You can check it on jsbin here - http://jsbin.com/irado Here's my script: var $j = jQuery.noConflict(); $j(document).ready(function () { // P...

modal view not showing inside didfinishpickingimage

Hi, I have a viewcontroller, and I would like to display a modal view controller with : presentModalViewController when a user finished picking an image. The modal view controller is working fine when I call it from a button in my main view. But when I call it from didfinishpickingimage callback nothing happens. Thanks. ...

Div popup of a movie or image

I am looking for a Javascript that will pop up a modal floating div which can hold an image and will ghost our the full background of a web page. Sort of like the way the movie pops up here in this Apple trailer. ...

Dialog keypress and DOM

Hi - I'm trying to use jQuery's keypress to trigger a button click on a modal dialog created using the jQuery dialog function. The problem is, with the following code, it works the first time around (pressing enter presses the Save button) but I get erratic behavior when I close the modal dialog and reopen it. I'm thinking some variant o...