Tagged Questions

3
votes
4answers
1k views

Issue with jQuery UI Dialog when modal is set to TRUE

I'm developing an ASP.NET WebForm application with Visual Studio 2008 SP1 and C#. I have the following ASPX page: <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> ...
2
votes
1answer
43 views

ASP .Net TextChanged to show Jquery dialog

I want to display a jquery dialog under certain conditions when the text changes on a textbox which has a datepicker attached to it. In my TextChanged event I call to a javascript function which ...
2
votes
4answers
1k views

ASP.NET: How to “reset” validation after calling Page_ClientValidate

I have an ASP.NET page with a jQuery dialog that is displayed to change some data. I am setting up the jQuery dialog so that when the user clicks the OK button it calls ASP.NET's ...
1
vote
1answer
43 views

Trying to open a user control (Wrapped inside an aspx page) as popup using jQuery dialog in ASPX page

I am trying to open an user control (Child.ascx) as popup using jQuery dialog in an Aspx page. I wrapped Child.ascx in Child.aspx file. Now in Main.aspx I want to call the **Child.aspx** as a ...
1
vote
1answer
98 views

ASP.NET ViewState validation when manipulating DOM

I'm, using jQuery and ASP.NET to show a dialog containing buttons. After some scouring, I got the buttons in the dialog to work by adding a tad more JavaScript to append the dialog to the form. var ...
1
vote
2answers
516 views

DropDownList selected index changed Event inside jQuery dialog

Problem: when dropdownlist selected index changes, another dropdownlist should be populated depending on the selected value. I am using webforms. In the masterpage I have this code which allows me to ...
1
vote
3answers
77 views

asp.net form controls are unreadable when in a jQuery dialog, how do you fix it?

I've got a prickly one. I have an asp.net web forms page. In the page I have a div tag that I've set to be used as a jQuery dialog. In the div is some jQuery controls. I get the dialog to open up and ...
1
vote
2answers
518 views

jquery dialog interferes with .net input checkbox checked property - always false

I came across the following given a asp.net page containing <div id='test'> <input type='checkbox' id='ch1' name='ch1' runat=server /> <input type="button" id="view_test" /> ...
1
vote
1answer
451 views

Injecting JavaScript Outside an Update Panel

I have an aspx page with four UpdatePanels. Incidentally, each UpdatePanel corresponds to a JQuery UI tab. What I am trying to achieve is a JQuery UI modal dialog OUTSIDE the UpdatePanels that can be ...
0
votes
2answers
57 views

send data from jquery dialog to parent page

I have used jquery ui dialog using IFrame and passed URL to that IFrame. So new page opened in dialog box in Iframe. After some processing in that dialog box page. I want to pass some data from that ...
0
votes
3answers
141 views

how can a clicked asp.net button open jQuery dialog and then resume default when Yes is clicked?

I've got a jQuery dialog and an asp.net button (Delete). When the delete button is clicked I want the dialog to open a confirm window saying 'Are you sure you want to delete this record?'. When the ...
0
votes
1answer
53 views

Hiding/Reshowing jQuery Dialogues

I'm trying to open a jQuery dialog using AJAX. The content of the dialog is loaded from a querystring and contains server controls inside a form tag. I have a GridView where a link in each row spawns ...
0
votes
1answer
136 views

jquery unbind crashes update panel

I have a jquery dialog with update panels inside it. To make things a little more complex, I use jquey validate. In order to disable the validation, I use jquey unbind function in "beforeClose". The ...
0
votes
1answer
173 views

jQuery Dialog Box Plugin Issue

I am NEW in jQuery and I am using Visual Studio 2010 ASP.NET Pages Tabs for now. In the first (Start) page User have to enter information to access other tabs. If User has not entered any info I want ...
0
votes
2answers
1k views

Prevent Postback after opening jQuery dialog box

Page: <body> <form id="frmLogin" runat="server"> <asp:Button ID="btnClick" OnClientClick="openConfirmDialog();" OnClick="PopulateLabel" runat="server"/> <div ...
0
votes
1answer
309 views

Jquery dialog stop closing when error occured?

I am using the jQuery Dialog in ASP.NET. I have it working fine with the exception of when I click the OK button in the dialog and if an error occurred I want to show the error in the label. By the ...
0
votes
2answers
619 views

Click ASP.NET button from jQuery dialog button event

I have the following ASP.NET markup: <div id="myForm" title="My Form" style="display: none"> <span>You can see me!</span> <div style="display: none"> ...