Class FileExplorerGridSettingsBuilder
Inheritance
System.Object
FileExplorerGridSettingsBuilder
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.JavaScript.Models
Assembly: Syncfusion.EJ.dll
Syntax
public class FileExplorerGridSettingsBuilder
Constructors
FileExplorerGridSettingsBuilder(FileExplorerGridSettings)
Declaration
public FileExplorerGridSettingsBuilder(FileExplorerGridSettings gridSettings)
Parameters
Type | Name | Description |
---|---|---|
FileExplorerGridSettings | gridSettings |
Properties
Items
Declaration
public List<Column> Items { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Column> |
Methods
AllowResizing()
- Allows to Resize the width of the columns by simply click and move the particular column header line.
Declaration
public FileExplorerGridSettingsBuilder AllowResizing()
Returns
Type | Description |
---|---|
FileExplorerGridSettingsBuilder |
AllowResizing(Boolean)
Declaration
public FileExplorerGridSettingsBuilder AllowResizing(bool allowResizing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | allowResizing |
Returns
Type | Description |
---|---|
FileExplorerGridSettingsBuilder |
AllowSorting()
Gets or sets a value that indicates whether to enable the dynamic sorting behavior on grid data. Sorting can be done through clicking on particular column header.
Declaration
public FileExplorerGridSettingsBuilder AllowSorting()
Returns
Type | Description |
---|---|
FileExplorerGridSettingsBuilder |
AllowSorting(Boolean)
Declaration
public FileExplorerGridSettingsBuilder AllowSorting(bool allowSorting)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | allowSorting |
Returns
Type | Description |
---|---|
FileExplorerGridSettingsBuilder |
Column(Action<ColumnAdder>)
Gets or sets an object that indicates to render the grid with specified columns. You can use this property same as the column property in Grid control.
Declaration
public FileExplorerGridSettingsBuilder Column(Action<ColumnAdder> fields)
Parameters
Type | Name | Description |
---|---|---|
System.Action<ColumnAdder> | fields |
Returns
Type | Description |
---|---|
FileExplorerGridSettingsBuilder |