Skip to main content
A newer version of this page is available. .
Tab

FileManagerSettingsDataSource Class

Contains a file manager’s fieldname settings.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public class FileManagerSettingsDataSource :
    FileManagerSettingsBase

The following members return FileManagerSettingsDataSource objects:

Remarks

Use the ASPxFileManager.SettingsDataSource property to access the FileManagerSettingsDataSource object.

Example

Note

For a full example, see File Manager - Database Binding or File Manager - Details View demo.

<dx:ASPxFileManager ID="fileManager" runat="server" DataSourceID="ArtsDataSource">
     <SettingsDataSource KeyFieldName="Id" ParentKeyFieldName="ParentID" NameFieldName="Name" IsFolderFieldName="IsFolder" FileBinaryContentFieldName="Data" LastWriteTimeFieldName="LastWriteTime" />
     ...
</dx:ASPxFileManager>
<ef:EntityDataSource ID="ArtsDataSource" runat="server" ContextTypeName="DevExpress.Web.Demos.DataContext" EntitySetName="Arts" StoreOriginalValuesInViewState="false" />

Inheritance

See Also