Kendo UIを使い始めて、アップローダーを非同期モードで使用しようとしていますが、この非同期オブジェクトで使用できるフィールドに関するドキュメントが表示されません。
<div style="width: 350px">
<input name="files[]" id="files" type="file" />
</div>
<script type="text/javascript">
$(document).ready(function () {
$("#files").kendoUpload({
async: {
saveUrl: "save",
removeUrl: "remove",
autoUpload: true
//controllerName? Where is the documentation for this?
}
});
});
</script>
MVC拡張機能を使用する場合、かみそりの構文にはコントローラー名を指定するフィールドがあります。MVC拡張機能/かみそり構文を使用していない場合はどこに置きますか?