custom validation for telerik date picker? - asp.net-mvc

I am using telerik date picker. Date format is dd/mm/yyyy. If user enters it as ddmmyyyy then also it will be converted into format as dd/mm/yyyy. Now if user enters something like ddmmyy i.e. if year is only of 2 digits then i want to throw error message for the same to enter date in valid format. Also this date field is not required. So want to show this message if wrong format of date is entered on blur event of date field.

From my experience and with this demo from the Telerik Site it works if you do ddmmyy or ddmmyyyy by default if you have it set to a culture that commonly uses that style. Ex. Canadian English or en-CA.
If you have have specified your format as "dd/mm/yyyy" then the user will have to enter it as so or it will appear incorrect. You could use some java script to convert it to a proper format, but it would be a lot easier to just set up the date picker properly.

Related

Google Sheet-Date validation in specific format

how to use specific date formats in data validation in Google Sheets.
I set this date format in google sheet dd-mmm-yyyy (09-Jan-2023) but the user enters a different date format in the sheet so im want to use data validation for this the user must enter data in specific format dd-mmm-yyyy
i want that when user enter data in different format its auto rejects entry.
try:
=REGEXMATCH(A1&""; "\d{2}-.{3}-\d{4}")
or:
=REGEXMATCH(A1; "\d{2}-.[A-z]{3}-\d{4}")
If you previously set the date format in the range you want, then no matter in which way the date is inserted then it will be displayed as you wish. Specially with mmm format you'll be always at risk that they can mess with how the month is supposed to be written, I think it's preferably for them to insert the number and you choose how it is displayed

xforms - orbeon Date field input correction

I'm trying to get rid of fixing date input by user on Date field in Orbeon forms.
I had formatted my Date field to DD/MM/YYYY and when I type:
44/07/2022
It automatically changes to 13/08/2022 (moves extra days to next month)
I just want to validate wrong input without "fixing" it and ask user to correct it by himself. Is it possible to disable this feature by prop or make any workarounds? I checked documentation and didn't find any clues.

Does Ant Design date picker allow you to pick a date by typing the date into the input box?

Based on https://ant.design/components/date-picker/,
Date picker allows you to enter a date into the input field but it wont be accepted by the date picker.
Can anyone confirm if this is true?

Is it possible to have a variable within a hyperlink in MSWord?

I want to have
http://reports.ieso.ca/public/DispUnconsHOEP/PUB_DispUnconsHOEP_date_v24.xml
in Microsoft Word, but want the date to be a variable. When clicked I want it to be filled in with yesterday's date in the format of YYYYMMDD.
An example would be
http://reports.ieso.ca/public/DispUnconsHOEP/PUB_DispUnconsHOEP_20160707_v24
but want the date to change depending on the current date

How to get the Date and time value from DateField in Blackberry Programming?

I am using DateField to display the Date and Time in my Blackberry Program,if the user changes the date it should be updated in the database.But the DateField component returns as a long value, i cannot do anything with this long value.If anyone knows how to get the Date and Time value as String please help me.
net.rim.device.api.i18n.SimpleDateFormat will let you easily format a long date/time into any String Date/Time you want.
If you want to just get the individual components of the long date/time as individual numeric values, use java.util.Calendar

Resources