LayoutState
Adaptable State Section for Layout Module, containing collection of Layouts and name of Current Layout
TypeScript
export interface LayoutState extendsExtends
Properties
| Property | Description |
|---|---|
| CurrentLayout | Layout to be loaded when AdapTable starts (using Name property in Layout); if not provided the first Layout is used |
| Layouts | Collection of Layouts - can be Table or Pivot |
Property Details
CurrentLayout
Layout to be loaded when AdapTable starts (using Name property in Layout); if not provided the first Layout is used
TypeScript
CurrentLayout?: string;Property Value
string
Layouts
Collection of Layouts - can be Table or Pivot
TypeScript
Layouts: LayoutArray;