I have a DateTime Field "Date1" in my list. I need to set its format as "DD-MMM-YYYY" (eg: 29-Mar-2017). I achieved doing this on Display form using the FormatDatetime function in XSL:Select. I need to change it on New/Edit forms too, when date is selected from datepicker
Sharepoint 2013: How to change date format of DateTime textbox in NewForm/EditForm?
1k views Asked by Sanjana Chhabira At
1
There are 1 answers
Related Questions in DATETIME
- Python datetime.now() with timezone
- Create a list of sequential monthly dates in PHP given initial date and quantity
- DataTable RowFilter on Time component of DateTime column
- Joda DateTime Json date format issue
- how to create folder and file with datetime in wpf application
- String concatenation with padded integers
- What is the correct DateTime format in WebSQL to perform date comparison queries?
- how to get the time interval of a date and a datetime displayed as day,hour, min,seconds in sql
- DateTime.Now.ToString("HH:MM") allways gives 20:06
- How can I get the ctime and/or mtime of a file in Python including timezone?
- add time (char(8)) to date column
- MyBatis cannot work with joda DateTime?
- PHP Fatal error: Call to a member function format() on boolean
- Use DateTime format in a class but restrict time tokens
- Modify records to account for correct priority and order between two systems
Related Questions in SHAREPOINT
- Upload a document to a SharePoint document library (can be via Rest Api/other) using C# & also retrieve the unique id of the document
- Sharepoint alers email deletion from alerts
- SharePoint/CSS3 Gradients/IE9
- Sharepoint 2007 / Jquery - Replace all text on body or render HTML
- share point excel service
- MS Access Run-time error 3999
- Maintain Sharepoint Server Url with subfolders in document list
- How can I integrate a SharePoint document folder in a separate ASP.NET web site?
- why I don't get list subfolders despite using RecursiveAll option
- Modal Extender Ajax Control Toolkit (ASP 2.0) will not pop-up on server side trigger
- Configure SharePoint 2010 UPS with PowerShell
- How can I get Internet explorer to display this image correctly
- Developing Syntax app SharePoint Online PrismJS
- SharePoint 2013 Custom list field iterator not saving values for MultiLine or person columns
- SharePoint Links with Ampersands
Related Questions in FORMATDATETIME
- Format grouped date as readable date
- XSLT format-date for an attribute
- How to convert MySQL TIMESTAMP to date time in PHP
- Format a column of dates in CSV
- How do you convert a date in XSLT2.0?
- How can I put an ordinal suffix on the end of a date?
- Delphi FormatDateTime exception
- Get formatted string from Calendar
- issues with Formatdate function in ampscript
- formatDate angular showing incorrect minutes
- Get Timezone/Offset via City State and convert ISO-8601 UTC Date
- Android format Date and return Date as dd-MMM-yyyy
- How to remove 00:00:00 from a Date in VB.Net?
- how to set format date in script google sheet
- Convert a string in date (so formatted: month day, year hh:mm:ss)
Related Questions in NEWFORMS
- Sharepoint online list Create Folder and insert item in it
- Open existing Form
- How to code a button to enter a value in a textbox on another form
- SharePoint Custom List Form doesn't validate required fields
- Anyone know an up-to-date (September 2009) example of file-uploading in Django?
- Abstracting the superagent
- Move smalldatetime from databound DGV to new form textbox and change format
- Customizing default sharepoint form in powerapps doesn't save after publishing to sharepoint
- pass dictionary to new form c#
- react newforms, throw error on server response
- Label position in React Newforms
- Script to update the value of a choice field
- react newforms, set input value and focus field
- React: input validation
- Sharepoint 2013: How to change date format of DateTime textbox in NewForm/EditForm?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
As far as I know, this is not possible by using "Calculated Value" property of "Date1" column as self referral is not allowed.
What you can do is create a new "Calculated" column and then use formula
=TEXT(Date1,"dd MMM yyyy"). Select "Date and Time" in data type returned and use "Date only" in format.This will solve your purpose