I have a slight problem, I have a view which has a submit button and it posts values to my controller. In my view I have a jquery popup box which I use to render a generic list (property of the model) in the form of editor templates. upon post the model property within the modal box is always null. when the dialog box is called, I think mvc resets the dom and the model properties within the modal are null. please advice. thanks
<div class="bodyContent">
<span class="leftContent">
@Html.Label("Test Exceptions")
</span><span class="rightContent"><span id="TestExceptionChildDialogLink" class="treeViewLink">
Click here to View Test Exceptions</span>
<br />
<span id="TestExceptionDisplayy"></span></span>
</div>
<div id="testExceptiontreeview" title="Dialog Title" style="font-size: 10px; font-weight: normal;
overflow: scroll; width: 800px; height: 450px;">
<div id="inputTestExceptions">
@if (Model.TestExceptionDisplay != null)
{
@Html.EditorFor(x => x.TestExceptionDisplay)
}
</div>
</div>
JS File:
var partTextArea;
var PartDialog;
$(document).ready(function () {
PartDialog = $("#testExceptiontreeview").dialog({ autoOpen: false, title: 'Parsed Test Exceptions', width: 530, height: 400, buttons: { Close: function () {
var btnText = '';
$("#inputTestExceptions").attr("style", "display:inline;");
$('.ui-dialog-buttonpane :button').each(function () {
if ($(this).text() == 'Close') {
btnText = 'Close';
$(this).text('Close');
$("#inputTestExceptions").attr("style", "display:inline;");
}
});
if (btnText == 'Close') {
PartDialog.dialog("close");
}
return true;
}
}
});
$('#TestExceptionChildDialogLink').click(function () {
$("#inputTestExceptions").attr("style", "display:inline;");
PartDialog.dialog('open');
});
});