关闭弹出窗口Windows MVC控制器

时间:2013-05-20 08:52:22

标签: c# javascript asp.net-mvc-3 asp.net-mvc-4

点击屏幕上的链接时,我打开了一个弹出窗口,该链接的视图是_DetailsS​​urvey。单击链接弹出窗口后,将打开_EditSurvey视图的内容。在_EditSurvey结束时,我有按钮

<input type="submit" value="Save" />

我正在使用Ajax选项,点击按钮后,如果modelstate有效,我会在Survey表中插入一行。

 @using (Ajax.BeginForm("SubmitSurvey", "Blog", null, new AjaxOptions
    {
    UpdateTargetId = "context",
    InsertionMode = System.Web.Mvc.Ajax.InsertionMode.Replace,
    HttpMethod = "Post",
    Url = "/Home/SubmitSurvey"
    },
    new { surveyItem = @Model }))

我想要做的是,如果从SubmitSurvey方法返回后模型状态是有效的,我希望关闭弹出窗口。我使用以下方法来实现这一点,但它不起作用。

    Employee employee;
    if (ModelState.IsValid)
    {

        int employeeId = surveyItem.EmployeeId;
        int trainingId = surveyItem.TrainingId;
        employee = _work.EmployeeRepository.GetSet().
        FirstOrDefault(a => a.Id == employeeId);


        var training = _work.TrainingRepository.GetSet().Where(a => a.EmployeeId == employeeId && a.Id == trainingId).ToList().ElementAt(0);
        training.Survey = surveyItem.survey;
        training.SurveyId = surveyItem.survey.Id;

       /* _work.SurveyRepository.Add(surveyItem.survey);
        _work.SurveyRepository.Save();*/
        _work.TrainingRepository.UpdateAndSave(training);
        _work.TrainingRepository.Save();

    }
    else
    {

        return PartialView("_EditSurvey", surveyItem);
    }
    return JavaScript("window.close()");

我按如下方式创建弹出链接

 <tr>
    <td class="view_detail_label">
        Eğitim Adı
    </td>
        <td>

           @Html.ActionLink(
           training.Name.Name, 
           "AddSurvey", 
           new { 
               employeeId = Model.Id, 
               trainingId = training.Id 
           },
           new {
               @class = "addSurvey"
           }
       )
         <div class="result" style="display:none;"></div>             
        </td>            
    </tr>

调用的ajax代码如下:

 $(document).ready(function () {
    $('.addSurvey').click(function () {
        $.ajax({
            url: this.href,
            type: 'GET',
            cache: false,
            context: this,
            success: function (result) {
                $(this).next('.result').html(result).dialog({
                    autoOpen: true,
                    title: 'Anket',
                    width: 500,
                    height: 'auto',
                    modal: true
                });
            }
        });
        return false;
    });
});

在我的弹出视图中,我使用之前显示的Ajax BeginForm及其下方,我有用户输入调查值的表。最后我有提交按钮。

<table id="context">
<tr>
    <td>
        <div class="editor-label">
            @Html.LabelFor(model => model.survey.Context)
        </div>
    </td>
    <td>
        <div class="editor-field">
            @Html.EditorFor(model => model.survey.Context)
            @Html.ValidationMessageFor(model => model.survey.Context)
        </div>
    </td>
   </tr>
 <tr>
        <td>
            <input type="submit" value="Kaydet" />
            </td>
    </tr>

如果提供的输入有任何问题,我会在每个字段旁边显示验证消息。如果模型有效,我想关闭弹出窗口。

1 个答案:

答案 0 :(得分:2)

打开弹出窗口这是一个非常糟糕的主意,原因很多我不会在这里解释。我花了很长时间才找到一个我认为完美的解决方案(对我而言)。

在我的情况下,我将视图准备为部分视图(没有html,标题和正文)。只需要必要的项目就可以在div中创建我的功能。

然后我使用ajax查询请求我的部分视图后,我用部分视图字符串提供div,并将JQuery对话框方法应用于div,我的视图显示为浮动对话框,我绑定OK按钮到ajax帖子将数据发送到服务器。 如果您想要进行不显眼的验证,则必须使用验证器解析表单。

我邀请您查看我的框架,您需要的一切都可用。

https://myprettycms.codeplex.com/SourceControl/latest#461106