Date Control Format
Posted: 01 Jan 2019
Hello. Pardon my naivety, I'm not very fluent in JS AT ALL. I've done a couple of alerts in my time but.........
From the attached image you can see I have a couple of date fields; date from date to. All I want is to display dates as "Tuesday, January 1, 2019" or even "2019-01-01" instead of the default date picker, which to me is not very intuitive.
I see the Javascript for my field being "" but can't change it.
Would I just add in the Javascript popup window?
From the attached image you can see I have a couple of date fields; date from date to. All I want is to display dates as "Tuesday, January 1, 2019" or even "2019-01-01" instead of the default date picker, which to me is not very intuitive.
I see the Javascript for my field being "
Code: Select all
fd.field(fieldName).control()._el().append("<p>Custom rendering</p>");
Would I just add
Code: Select all
fd.field(fieldName).control()._el().append("<p>yyyy/mm/dd</p>"