Eman
Eman

Reputation: 1315

ASP.NET MVC 3 - Partial postback doubles a jqueryUI progress bar

I have a view that has a partial view in it, everything works fine, but there's an odd glitch that whenever a user reloads the partial view, the main view gets a double progress bar that on there.

the progress bar is a JqueryUI progress bar, and the kicker is, each time a partial refresh is done, it adds to the issue.

to clarify, the progress bar isn't in the partial view.

not at all sure what in terms of code to show, so if you need to see something specific, let me know.

thanks.

Upvotes: 0

Views: 506

Answers (1)

Jason
Jason

Reputation: 15931

are the js files being double included multiple times? maybe once in the page, and again in the partial? that can cause problems like this

Upvotes: 1

Related Questions