Hi there,
using the “jqxDateTimeInput” with:
$(“#buchungsdatum”).jqxDateTimeInput({
width: ‘150px’,
height: ’25px’,
allowNullDate: true,
editMode: ‘full’,
formatString: ‘dd.MM.yyyy’,
showFooter: true,
value: null,
yearCutoff: 2020
});
$.getScript(‘jqw/globalization/globalize.culture.de-DE.js’, function () {
$(“#buchungsdatum”).jqxDateTimeInput({ culture: ‘de-DE’ });
});
will give me an input field which can be edited manually.
But when entering e.g. “10” and I want to make a “.” Dot after the “10” there appear two backslashes.
That means: Entering “10.” will output me 10\\.”
Any idea?
(how to send you an screenshot)