com.phloxui
Version:
PhloxUI Ng2+ Framework
34 lines (33 loc) • 1.34 kB
TypeScript
import { OnInit, ElementRef } from '@angular/core';
import { AbstractHasFormatterDataView } from './AbstractHasFormatterDataView';
import { IHasData } from '../IHasData';
import { FormatterFactory } from '../../service/FormatterFactory.service';
import { IFormatter } from '../../share/shares';
export declare class StringDataView extends AbstractHasFormatterDataView implements OnInit {
static readonly TYPE_NAME: string;
static readonly DEFAULT_FIELD: string;
protected dataParent: IHasData;
protected ignoreParentData: boolean;
protected data: any;
protected ignoreParentDisabled: boolean;
protected delegateHistory: boolean;
protected onDisabled: Function;
protected onEnabled: Function;
protected loadingEnabled: boolean;
protected i18nKey: string;
protected bypass: boolean;
protected options: any;
protected disabled: boolean;
protected field: string;
protected formatterName: string;
protected formatterOptions: any;
protected formatter: IFormatter;
protected formatterUsePropertyValue: boolean;
protected originalValue: string;
constructor(elementRef: ElementRef, formatterFactory: FormatterFactory);
ngOnInit(): void;
isSelfDataDirty(): boolean;
selfSaveData(data: any): void;
selfResetData(): void;
setData(data: any): void;
}