We have a requirement to modify the placeholder of a dateField component. However, we have not been able to modify it as the placeholder parameter of that component is not modifiable.Does anyone know of a way, another component or plugin that does the functionality of the dateField and the placeholder can be modified?This alternative must have the behavior similar to the dateField, that is to say, that when clicking on it opens a calendar where the user can choose the date.
Thank you very much.
Discussion posts and replies are publicly visible
Hello Sandra
What would be the place holder? Is it a particular date? Below is something that would help if that is the requirement.
a!localVariables( local!date: a!defaultValue(value: ri!date, default: today()), a!dateField( label: "My Date", value: local!date, saveInto: local!date ) )
Hello Konduru Chaitanya .First of all, thank you very much for your interest.We want to put a customizable text in the placeholder of the dateField, specifically "to" instead of the default "mm/dd/yyyy".
As Mike has mentioned, the defaulted placeholder cannot be modified.