private InputField getDateTimeDisplayerAsInputField() {
String name = getString("Label.CurrentTimeInSelectedTimeZone");
TextStyle style = TextStyles.InputLabelText;
JLabel lbl = style.makeLabel(name);
dateTimeDisplayer.setAppearance(style.asLabelDecorator(null));
return new InputField(name, BorderLayoutBuilder.fillWith(dateTimeDisplayer), lbl) {
@Override
public void makeReadOnly() {
dateTimeDisplayer.setEditable(false);
}