Hi,
I am trying to clear the default placeholder seen below. When I attempt to use "Prompt" it does not change the value.
I would appreciate any help or guidance I can get.
Regards,
Tenisha Lovell
Hey,
That is caused by the browser. It recognizes that you're using a date type input, and that's also why you get a calendar without using the calendar widget.
If you want to change the default placeholder, you'll need to change the input type to text, and work around it, using the calendar widget.
Cheers
Hello
You have to put this JavaScript on your OnReady Screen Event
document.getElementById($parameters.ElementId).value = '';
Edit: Check this if it helps -
I hope this helps.https://www.outsystems.com/forums/discussion/78509/datepicker-reset-selected-dates-within-widget-using-client-action/
Thanks