You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sets the [FileManagerDataSource](/api/javascript/data/filemanagerdatasource) of the FileManager. Can be bound to a remote service or local data.
132
+
Sets the [FileManagerDataSource](/api/javascript/data/filemanagerdatasource) of the FileManager. Can be bound to a remote service or local data.
133
133
134
134
#### Example
135
135
@@ -189,17 +189,17 @@ Sets the [FileManagerDataSource](/api/javascript/data/filemanagerdatasource) of
189
189
isDirectory: false,
190
190
hasDirectories: false,
191
191
path: "folder/Image2.jpg",
192
-
extension: ".jpg",
192
+
extension: ".jpg",
193
193
size: 20,
194
194
createdUtc: new Date(),
195
195
}
196
-
]
196
+
]
197
197
}
198
198
];
199
199
200
-
$("#fileManager").kendoFileManager({
200
+
$("#fileManager").kendoFileManager({
201
201
dataSource: myData
202
-
});
202
+
});
203
203
</script>
204
204
205
205
### upload `Object`
@@ -229,6 +229,51 @@ Sets the upload url for the Upload widget.
229
229
});
230
230
</script>
231
231
232
+
### upload.cancel `Function`
233
+
234
+
Fires when the upload was cancelled while in progress. [Upload Events](/api/javascript/ui/upload#events).
235
+
236
+
### upload.clear `Function`
237
+
238
+
Fires when the files are cleared by clicking on the **Clear** button. [Upload Events](/api/javascript/ui/upload#events).
239
+
240
+
### upload.complete `Function`
241
+
242
+
Fires when all active uploads complete—either successfully or with errors. [Upload Events](/api/javascript/ui/upload#events).
243
+
244
+
### upload.error `Function`
245
+
246
+
Fires when an `upload` or `remove` operation fails. [Upload Events](/api/javascript/ui/upload#events).
247
+
248
+
### upload.pause `Function`
249
+
250
+
Fires when the files are cleared by clicking the **Pause** button. The button is visible if `chunksize` is set. [Upload Events](/api/javascript/ui/upload#events).
251
+
252
+
### upload.progress `Function`
253
+
254
+
Fires when the data about the progress of the upload is available. [Upload Events](/api/javascript/ui/upload#events).
255
+
256
+
### upload.resume `Function`
257
+
258
+
Fires when the files are resumed through clicking the **Resume** button. The button is visible if `chunksize` is set and the file upload is paused. [Upload Events](/api/javascript/ui/upload#events).
259
+
260
+
### upload.remove `Function`
261
+
262
+
Fires when an uploaded file is about to be removed. If the event is canceled, the `remove` operation is prevented. [Upload Events](/api/javascript/ui/upload#events).
263
+
264
+
### upload.select `Function`
265
+
266
+
Fires when a file is selected. [Upload Events](/api/javascript/ui/upload#events).
267
+
268
+
### upload.success `Function`
269
+
270
+
Fires when an `upload` or `remove` operation is completed successfully. [Upload Events](/api/javascript/ui/upload#events).
271
+
272
+
### upload.upload `Function`
273
+
274
+
Fires when one or more files are about to be uploaded. The canceling of the event prevents the upload. [Upload Events](/api/javascript/ui/upload#events).
275
+
276
+
232
277
### toolbar `Boolean | Object`*(default: true)*
233
278
234
279
Configures the Toolbar of the FileManager
@@ -542,7 +587,7 @@ Configures every view registered for the FileManager.
542
587
543
588
### views.grid `Object`
544
589
545
-
Configures the built-in grid view - accepts [kendoGrid options](/api/javascript/ui/grid)
590
+
Configures the built-in grid view - accepts [kendoGrid options](/api/javascript/ui/grid)
0 commit comments