src/ui/smart-tab-folder/smart-tab-folder-page.component.ts
selector | SmartTabFolderPage |
templateUrl | ./smart-tab-folder-page.component.html |
viewProviders |
|
Properties |
Methods |
Inputs |
Outputs |
Accessors |
constructor(container: ViewContainerRef, tabParentService: SmartTabfolderTabParent)
|
|||||||||
Parameters :
|
key |
Type : string
|
layout |
selected |
Type : boolean
|
tabContent |
Type : SmartTabFolderPageContentDirective
|
selectedChange |
Type : EventEmitter<boolean>
|
setColumnWidth |
setColumnWidth()
|
Returns :
void
|
_processedLayout |
Type : any
|
columnWidthCssClass |
Type : string
|
layout | ||||
getlayout()
|
||||
Returns :
TabFolderPageSettings
|
||||
setlayout(value)
|
||||
Parameters :
Returns :
void
|
<ng-container *ngIf="!!_processedLayout && !!_processedLayout.rows && !_processedLayout.columns">
<div class="row smart-form-row" *ngFor="let row of _processedLayout.rows">
<FormColumn
*ngFor="let column of row.items"
[class]="column.widthClass"
[formItems]="[column]">
</FormColumn>
</div>
</ng-container>
<ng-container *ngIf="!!_processedLayout && !!_processedLayout.columns && !_processedLayout.rows">
<div class="row smart-form-row">
<FormColumn
*ngFor="let column of _processedLayout.columns"
[class]="columnWidthCssClass"
[formItems]="column.items">
</FormColumn>
</div>
</ng-container>