Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5972639
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T20:41:11+00:00 2026-05-22T20:41:11+00:00

Trying to populate and formate a date value inside an INPUT text field. What

  • 0

Trying to populate and formate a date value inside an INPUT text field. What am I doing wrong here?

<spring:bind path="salesData.weekEndDate">
 <input type="text" name="${status.expression}"
 value="${fmt:formateDate pattern='MM/mm/YYYY' status.value}"
/>

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T20:41:12+00:00Added an answer on May 22, 2026 at 8:41 pm

    The JSTL fmt taglib exists of <fmt:xxx> tags, not ${fmt:xxx} functions.

    Fix it accordingly:

    <input type="text" name="${status.expression}"
        value="<fmt:formatDate pattern="MM/dd/yyyy" value="${status.value}" />" />
    />
    

    (note that days are to be represented as dd, not mm and that years are to be represented as yyyy, not YYYY, see also SimpleDateFormat javadoc for all valid patterns)

    If your IDE jerks about the nested tags (which should run perfectly fine however) or you get itch from it, make use of the var attribute so that your HTML/XML ends up well formed.

    <fmt:formatDate pattern="MM/dd/yyyy" value="${status.value}" var="statusDate" />
    <input type="text" name="${status.expression}" value="${statusDate}" />
    

    If you really like to have a ${fmt:formatDate()} function, you’d have to homegrow it yourself. You can find a kickoff example in this answer.


    Update as turns out per comments, the ${status.value} is actually a String in the format yyyy-MM-dd. If fixing it to be a fullworthy Date is not an option, then you would need to parse it into a Date first with help of <fmt:parseDate> before feeding it to <fmt:formatDate>.

    <fmt:parseDate pattern="yyyy-MM-dd" value="${status.value}" var="parsedStatusDate" />
    <fmt:formatDate pattern="MM/dd/yyyy" value="${parsedStatusDate}" var="formattedStatusDate" />
    <input type="text" name="${status.expression}" value="${formattedStatusDate}" />
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to pre-populate data to a token input field. But nothing gets
I am trying to populate a string with a double value using a sprintf
I'm trying to populate a list, and my question is how do you bind
I have a java.sql.Time field in a model that I'm trying to populate from
I am trying to dynamically populate the data-id field with a public url fetched
I'm trying to populate a TDBGrid with the results of the following TQuery against
I'm trying to populate a table with user information in a MS SQL database
I'm trying to populate a DataTable, to build a LocalReport, using the following: MySqlCommand
I'm trying to populate a dictionary dynamically in a for loop like so: pseudo-code
I'm trying to populate a List of beans from a form: public class Foo

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.