TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
boycoto
NA
147
125.5k
Unable to close dialog
May 3 2013 3:18 AM
Hi guys, I'm having a trouble closing a jquery dialog box, it gives me an error - Object doesn't support this property or method.
Here's my code loading a jquey dialog box.
[Code]
$(document).ready(function() {
$("#btnLookUp").click(function() {
$("#searchActor").dialog({
autoOpen: "false",
resizable: "false",
height: "350",
width: "320"
});
$("#searchActor").load("LookUp/ActorsList.aspx");
$("#searchActor").dialog("open");
return false;
});
});
[/code]
Using the function below, append whatever selected value on the dialog to the textbox
[code]
function GetSelectedGrid(param) {
$("#txtActorID").val(param);
$("#searchActor").dialog("close");
}
[/code]
However, the highlighted statement prompts the error - Object doesn't support this property or method.
Reply
Answers (
2
)
javascript validation in aspx file.
gridview error