jqmodal

Basic question about jquery and .NET

I want to make a page so I can select filters in a "jquery popup", but I don't know how to receive the results. Suppose I have a page with a ListView, and I want to select filters for it (perhaps with multiple selection from a list), so I make a different ASPX and open it using jquery (actually jqModal) via ajax, the user selects the fi...

Jqmodal isn't working in the Updatepanel

I have a method named raise_alarm() which, show a message box based on jquery. But when I call this method from an event of a control(such as submit button) which is inside of Updatepanel, it isn't working. Related codes are below. How can I fix it? Public Sub Raise_Alarm(ByVal p_Page As Page, ByVal p_Message As String, Optional ByVal ...

problem with jqmodal inside an update panel

I have a control that I need to display as a page or as a modal dialog. In the page_load event I look to see if the modal property is set and if so, I register a script to invoke jqmodal. Here is the code: protected void Page_Load(object sender, EventArgs e) { if (this.Modal) // Show as a mod...

jquery jqModal Ajax and nested modal problems

I just started using jqModal as I need support for nested modals. I'm noticing some erratic behavior with nested modals and ajax, but I don't know exactly how to fix it. What happens is when I load the main modal, that has a nested modal in it, I get two jqmOverlay divs, it's like it's applying the overlay for both modals, even though ...

Is it possible to open a JqModal pop-up iframe from flash

I have a link in flash that I want to open with a JqModal popup. I tried passing the string in the flash varaible but that didn't work. var flashvars = { testURL: "contact-us.html?q=jqmodal&go=&form=QBLH&width=781&height=400" }; Any ideas?? ...

jqModal, jquery question

Hi, I have the following code; // open the modal when an element with a class 'edit' is clicked $('.edit').live('click', function() {` $('#mdl_edit').jqm({onHide: f($(this).attr('id')), ajax: 'ajax/edit_modal.aspx?lid=' + $(this).attr('id'), ajaxText: '<img src="img/ajax-loader.gif"' }); $('#...

calling a function outside ajax modal

Hi, I am using the jqModal plugin for modal dialogs on my page. I have a situation where one modal includes a form called via ajax (a seperate .aspx page that gets loaded into the modal window. as shown below) $('#mdl_new').jqm({ ajax: 'ajax/new_modal.aspx', trigger: '#options_add a' }); When the user fills in the form in the new_mo...

Latest jqModal release: "live" link triggers won't work.

With the latest jqModal release (+r14), I'm having an issue with the new feature of live links. Whenever the live-loaded trigger link is clicked on, it redirects to the HREF instead of loading it via AJAX. How can I make it behave normally? I've searched around and other people seem to have this issue, but it's gone unresolved. $('a.mo...

A problem about one Jqmodal call from another jqmodal

Sorry for my bad english writing i am a new one to jqmodal i use jqmodal by iframe mode, like 'http://www.pixeline.be/experiments/ThickboxToJqModal/' the top window call jqmodal finction and open a jqmodal iframe window, and then the opened jqmodal iframe window will call its jqmodal finction to open the third iframe window. the th...

jqModal displaying incorrectly in Mobile Safari

I have a jQModal window on my site that has its content populated by an Ajax call. It works fine in all of the desktop browsers, but it fails in Mobile Safari on the iPhone. The overlay and the window itself are displayed on the top of the body of the page, rather than covering the iPhone viewport. If you scroll up, you can see the win...

jqmodal and nyromodal will not work w/ Jquery 1.3.2 and Firefox toolbar extension

I've been trying to create my own firefox toolbar with commands that will open and close a modal dialog using either jqModal or nyroModal. In both cases the act of opening the dialog causes errors and I can't find anything out there as to why modals would break. Browser: Firefox 3.0.11 JQuery: v1.3.2 jqModal: r14 nyroModal: 1.5.0 Sampl...

jqModal and live quering (R14)

I have a dynamically created table that I am trying to attach a modal effect when an image is clicked and am having trouble. Since the rows in the table are dynamic, I am using the "live" feature. The first time that the user clicks on the image, the modal pops up fine, but on the next click it does not work. I thought that with jqMod...

jqModal overlay in Firefox not transparent

I'm using jqModal for an application I'm developing. It works great in IE8, but in Firefox 3.5.2, the window comes up but the overlay is solid black. It seems like a CSS problem but I'm not sure. The samples on the jqModal site work fine. Any ideas? Thanks. Site: ASP.NET with MS AJAX jQuery 1.3.2 latest jqModal UPDATE: After re...

JQGrid / Date Picked within Add/Edit window

I have been able to work the Date Picker into JQGrid when editing inline, but I am unable to use it inside the add/edit window. Does anyone have instructions on how to do this or an example I can look at? demo from that site of what I am trying to do: http://www.the-di-lab.com/demo/apples I read that I could use the following method bu...

jqModal Window Effect goes off when form Submission

I am invoking a modal window using jqmodal and in it contains a form. When I try to submit the form, the modal window effect goes off. Is there a way i can retain the effect even when the form refresh happens. Ajax submit is 2 complex because of tapestry elements. One more requirement is how do i get to load another html in the same AJ...

jqmodal window closes on form submit for all browsers except FF

I have a comment window that opens up in a small jqmodal window. I am trying to use $.ajax to submit the form and show "success" in the small modal window. but in all browsers except firefox, the modal closes when I submit the form. <script type="text/javascript"> $().ready(function() { $('.reportForm').submit( function(){ if (docum...

jqModal/JQuery problem, div not updating with new content?

I'm hoping someone can point a relative jQuery/jqModal newbie in the right direction for debugging this error. I'm loading an html fragment into a div and then use jqModal to display that div as a modal dialog. The problem is that the div is displayed but not with my updated html. I'm showing my jqModal dialog in the response from a jq...

Can't assign jQuery jqModal to dynamically added links

I've been having problems getting jqmodal modal dialogs to display on links added dynamically by client side code. I've demonstrated the problem at the following URL: http://www.neil-burton.co.uk/jqmodaltest/index.htm Any help would be appreciated ...

Ajax refresh messes up jqModal functionality

I am trying to use jqModal in my .net/mvc app to do simple jquery modal popups. I have a table where I list out records and have an "edit" button to popup a modal dialog to do the edits. When I submit, I hide the modal popup and refresh the table listing below using the .ajax() method. However, now when I click on the "edit" page, jqM...

jqmodal event when modal goes away

hey all, when you click outside the modal to close it can you hook into any events to run more code? thanks, rodchar ...