FileManagerSettingsDataSource.ParentKeyFieldName Property
Gets or sets the name of the data source field which provides the item parent key values.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
String | String.Empty | A String value that specifies the name of the required data source field. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to ParentKeyFieldName |
---|---|
ASPxFileManager |
|
HtmlEditorFileManagerSettingsBase |
|
Remarks
This property is a wrapper of the DataSourceFileSystemProvider.ParentKeyFieldName property. Refer to its description for more information.
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" />
Example
<dx:ASPxFileManager ID="fileManager" runat="server" DataSourceID="XpoDataSource1">
...
<SettingsDataSource
KeyFieldName="Id"
ParentKeyFieldName="Pid"
NameFieldName="Name"
IsFolderFieldName="IsFolder"
FileBinaryContentFieldName="Data"
LastWriteTimeFieldName="LastWriteTime" />
</dx:ASPxFileManager>
See Also