1

この添付ファイルの列があります

 columns.Command(command => command.Custom("Attachments").Click("showAttachments")).Width(100).Title("Attachments");

そして私の剣道窓

  @(Html.Kendo().Window().Name("Attachments")
.Title("Upload Attachments")
.Visible(false)
.Modal(true)
.Draggable(true)
.Width(350)

)

<script type="text/x-kendo-template" id="attachment">
 <a data-role="button" onclick="myFunction();" class='k-button'>Upload</a>

ボタンオンクリック

<script type="text/javascript">

function myFunction() {
    var ln = document.getElementById("NumInput").value;
    var fil = document.getElementById("files");
    var filepath = fil.value;            
    var assetid = document.getElementById("hdassetid").value;

    $.ajax({
        type: "POST",
        url: '/Asset/SaveAssetAttachments',
        data: { filename: ln, filepath: filepath, assetid: assetid },
        success: function (data) {
             $("#myWindow").data("kendoWindow").close();
         },
        })
    };

これは、Show Attacments 関数が呼び出されたときにウィンドウを開くためのコードです。

function showAttachments(e) {
    e.preventDefault();
    var attachmentTemplate = kendo.template($("#attachment").html());
    var dataItem = this.dataItem($(e.currentTarget).closest("tr"));
    var wnd = $("#Attachments").data("kendoWindow");

    wnd.content(attachmentTemplate(dataItem));
    wnd.center().open();
}
 <scrip/>

ここで kendowindow onupload sucess を閉じたい

4

1 に答える 1

1

I got through this .kendo ウィンドウが閉じ、警告メッセージが表示されます

 $.ajax({
         type: "POST",
         url: '/Asset/SaveImages',
         data: { imagepath: imagepath, assetid: assetid },
         error: function () {
             $("#Images").data("kendoWindow").close();
             alert('Images uploaded Sucessfully');
         }
     })
于 2014-02-01T05:32:37.583 に答える