initialView String

    Configures the initial view of the FileManager.

    Example

    Open In Dojo
    <div id="fileManager"></div>
    <script>
        var baseUrl = "https://demos.telerik.com/kendo-ui/service/filemanager/";
    
        $("#fileManager").kendoFileManager({
            initialView: "grid",
            dataSource: {
                transport: {
                    read: {
                        type: "post",
                        url: baseUrl + "Read"
                    }
                }
            }
        });
    </script>
    In this article