Skip to main content

Bug Tracker

Side navigation

#4220 closed bug (invalid)

Opened February 23, 2009 02:01PM UTC

Closed October 13, 2009 12:41AM UTC

Last modified March 14, 2012 03:38PM UTC

jquery Dialog crash in IE

Reported by: sachinkatkar Owned by:
Priority: major Milestone: 1.4
Component: unfiled Version: 1.3.2
Keywords: dialog Cc: skatkar@waiin.com
Blocked by: Blocking:
Description

Hi,

I am using jquery dialog to display messages. As i have to show this confirmation messages depending upon my server side code. for e. g if record inserted successfully i ues Page.ClientScript.RegisterStartupScript() method. It works fine in mozilla firefox but while browsing same page in IE it shows me error saying that "Internet Explorer Cannot Open the Page". Here is my server side code

protected void Button1_Click(object sender, EventArgs e)

{

Page.ClientScript.RegisterStartupScript(this.GetType(), "showpp", "showpp();", true);

}

where showpopup() is my jscript method where i am calling jquery Dialog to display message. Here is my showpp() jscript function which is present in head tag of my aspx page.

<script type="text/javascript">

function showpp()

{

var vr=document.getElementById('dialog');

vr.style.display='block';

$('#dialog').dialog({Height:1000,

bgiframe: true,

modal: true,

buttons: {

Close: function() {

$(this).dialog('close');

}

},

overlay: {

opacity: 0.5,

background: "black"

}

});

}

'dialog' is the id of my div which i am showing in messages. it is invisible default. I make that visible first and then call $('#dialog').dialog() method.

Please help me out to solve this issue as few days are remaining to meet project's deadline.

Attachments (0)
Change History (2)

Changed February 28, 2009 03:45PM UTC by RavenRA comment:1

This is duplicate of ticket:4175

Changed October 13, 2009 12:41AM UTC by dmethvin comment:2

resolution: → invalid
status: newclosed

This is not a jQuery core bug. Please use the jQuery forums or contact the author via the method they request. For jQuery UI plugins, please file a bug on http://dev.jqueryui.com .