Hi,
I have a problem with input dialog.
It looks normal when language is set to English, but it looks completely different and unusable when language is set to Georgian.
This is my code:
dialogs.createInputDialog(this)
.withCaption(messageBundle.getMessage(“createAbsence”))
.withParameters(
InputParameter.dateParameter(“startDate”)
.withCaption(messageBundle.getMessage(“startDate”))
.withRequired(true),
InputParameter.dateParameter(“endDate”)
.withCaption(messageBundle.getMessage(“endDate”))
.withRequired(true),
InputParameter.entityParameter(“code”, AbsenceCode.class)
.withCaption(messageBundle.getMessage(“absenceCode”))
.withRequired(true),
InputParameter.stringParameter(“description”)
.withCaption(messageBundle.getMessage(“description”)),
InputParameter.entityParameter(“worker”, Worker.class)
.withCaption(messageBundle.getMessage(“worker”))
.withRequired(true)
)
.withActions(DialogActions.OK_CANCEL)
.withCloseListener(closeEvent -> {
})
.show();
Can anybody help me with this problem ?