Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

OGNL is the Object Graph Navigation Language - see http://www.ognl.org for the full documentation of OGNL. In this document we will only show a few examples of OGNL features that co-exist with Webwork.

...

Collections (Maps, Lists, Sets)
Anchor
Collections
Collections

Dealing with collections(maps, lists, and sets) in webwork comes often, so here are a few examples using the select tag:
Syntax for list: {e1,e2}. This creates a List containing the String "name1" and "name2"."

Code Block
<webwork:select label="'lebal'" name="'nmae'" list="{'name1','name2'}" />

...