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
neel k
NA
143
136.4k
Jquery Dialog not working second time
Nov 26 2014 4:57 PM
Hi all,
I am developing MVC application. In that I am using Jquery for popups, everything works fine for first time. In one page there is 3 popups when I open first popup it works fine and second popup open it is also works fine but again I am trying to open first popup it is not opening correctly, dialog shrinks when I open second time, The popup dialog height and width changing each and every time. Here is one of my popup code.
$
(
'#dialogHistory'
).
dialog
({
autoOpen
:
false
,
width
:
700
,
height
:
300
,
resizable
:
false
,
title
:
'History'
,
resizable
:
false
,
modal
:
true
,
open
:
function
(
event
,
ui
)
{
$
(
this
).
load
(
"@Url.Action("
_History
", new { id = Model.customer_id })"
);
},
});
Thanks,
Reply
Answers (
0
)
MVC 5 action link text change to image
how to restrict the whole page refreshing in mvc 4??