private _updateInternal()

in scripts/control.ts [52:62]


    private _updateInternal(value: number): void {
        WitService.WorkItemFormService.getService().then(
            (service) => {
                service.setFieldValue(this._fieldName, value).then(
                    () => {
                        this._update(value);
                    }, this._handleError);
            },
            this._handleError
        );
    }