I'm using a Jquery modal pop-up for multiple screens(say screen 1 - 6), and it isn't working for just screen 3, but working for the rest of the screens I've got 3 Layout pages: Layout1,Layout2, and Layout3. Every .cshtml page has the Layout as Layout3.Layout3 has the layout page as Layout2, and Layout2 in turn uses Layout1.
Every time a button(present in all 6 screens individually) is clicked, 'DeleteListByID()' is called and the popup is shown
The code for the modal-pop-up, as well as the JavaScript and CSS files are in Layout3
<script src="../../Scripts/ModalPopUp/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="../../Scripts/ModalPopUp/jquery-ui-1.8.20.custom.min.js" type="text/javascript"></script>
<link href="../../Content/jquery-ui-1.8.20.custom.css" rel="stylesheet" type="text/css" />
function DeleteListByID(controller, action, id) {
$("#DeleteRecord").dialog({ autoOpen: false, modal: true, closeText: "", resizable: false });
//some code
}
<div id="DeleteRecord" class="DN">
<p>
'@Constants.Global.LayoutForWorkflow.DELETE_RECORD_MESSAGE'
</p>
</div>
But on one screen(screen 3) it gives me an error saying "Object doesn't support this property or method". Basically, it can't find the method 'dialog'. Can someone please tell me why this is happening??
There are no files included in the individual screens.Everything is in Layout3.
My problem, on MVC 4, was that the jQuery UI file was not included. Adding
into my (_Layout.cshtml) file fixed it.
Edit: also needed jQuery CSS