How to make fmt:formatDate work for form:input

后端 未结 2 1791
南笙
南笙 2021-02-13 06:27

I have a jstl loop and I want to format the date of a form:input. I have tried many permutations of some of the suggestions that I\'ve fond online but I just cannot get it to wo

相关标签:
2条回答
  • 2021-02-13 07:03

    In the latest releases of the spring JSTL tags you can't use the attribute value into de tah form:input. If you try, you will get a value attribute is not valid for tag <form:input> error.

    In this case you must use a normal HTML input tag and put the path as the name of the input to trigger the binding to the Spring form like this

    <fmt:formatDate var="fmtDate" value="${form.bean.dateProperty}" pattern="dd/MM/yyyy"/>
    <input type="text" name="bean.dateProperty" value="${fmtDate}"/>
    

    Ugly but works for me! ;)

    0 讨论(0)
  • 2021-02-13 07:18

    You can't use a JSP tag in an attribute of another JSP tag. STore the result of the date formatting in a page attribute, and use this page attribute (as you would do with a variable in Java):

    <fmt:formatDate value="transactions['${loopStatus.index}'].valueTransactionDate"  
                    type="date" 
                    pattern="yyyy-MM-dd"
                    var="theFormattedDate" />
    <form:input type="text" path="..." value="${theFormattedDate}"/>
    
    0 讨论(0)
提交回复
热议问题