Wijmo ユーザーガイド > ウィジェット > FileExplorer > 主な機能 > 複数のファイルの選択 |
wijfileexplorer ウィジェットでは、 allowmultipleselection オプションを true に設定することで、複数のファイルまたはフォルダを選択できるようになります。
次のスクリプトでは、allowMultipleSelection オプションを true に設定することで、[Ctrl]ボタンを押しながら複数のファイルまたはフォルダを選択できるようにします。
<script type="text/javascript"> $(document).ready(function () { $("#fileexplorer").wijfileexplorer({ actionUri: "fileexplorer.ashx", viewPaths: ["~/Example"], allowMultipleSelection: true, }); }); </script>