- ${this._renderInput(idStart, 'start')}
+ ${this._renderInput(idStart, DateRangePosition.Start)}
${this.resourceStrings.separator}
- ${this._renderInput(idEnd, 'end')}
+ ${this._renderInput(idEnd, DateRangePosition.End)}
${this._renderPicker(idStart)} ${this._renderHelperText()}
`;
}
private _renderSingleInput(id: string) {
+ const readOnly = !this._isDropDown || this.readOnly || this.nonEditable;
+ const format = DateTimeUtil.predefinedToDateDisplayFormat(
+ this._displayFormat!
+ )!;
const prefix = isEmpty(this._prefixes) ? undefined : 'prefix';
const suffix = isEmpty(this._suffixes) ? undefined : 'suffix';
return html`
-