Slim3
Search this site
Home
Getting Started
Getting Started with GWT
Online demo
Discussion Groups
Downloads
Documents
Slim3 Datastore
Overview
Installation
Defining Data Classes
Keys and Entity Groups
Creating, Getting and Deleting Model
Queries and Indexes
Transactions
Relationships
Polymorphic Model
Slim3 Controller
Controller#run()
URL mapping
Request, Response and ServletContext
File Upload
Validation
Slim3 JSP
h
url
text
hidden
checkbox
multibox
radio
select
multiselect
nbsp
br
locale
timeZone
errorClass
errors
HOT reloading
Slim3 Eclipse Plugin
How to upgrade an existing project
Maven
Javadoc
Source
Issues
Release Notes
Languages
Japanese
Slim3 JSP
>
errors
This function returns an iterator for error messages.
For example:
<%@taglib prefix="f" uri="http://www.slim3.org/functions"%>
<ul>
<c:forEach var="e" items="${f:errors()}">
<li>${f:h(e)}</li>
</c:forEach>
</ul>
The result:
<
ul
>
<
li
>title is required.</
li
>
<
li
>content is required.</
li
>
</
ul
>
See
demo(Edit page)
and
sample source
.
Comments