source: VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/gui/table/FilterForm.html @ 5505

Last change on this file since 5505 was 5505, checked in by Twan Goosen, 10 years ago

Added a feedback panel to the base page, removed it from the filter form. Improved feedback (now via panel) when editing/creation of a VC fails

  • Property svn:eol-style set to native
File size: 1.4 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3                      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4<html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://wicket.apache.org/">
5<head />
6<body>
7<wicket:panel>
8  <form wicket:id="form" class="filterForm wizard">
9   <fieldset>
10    <div class="optional">
11      <label>Name</label>
12      <select wicket:id="nameMode"></select>
13      <input wicket:id="name" type="text" class="name"
14             size="64" maxlength="255"/>
15    </div>
16    <div class="optional">
17      <label>Description</label>
18      <select wicket:id="descriptionMode"></select>
19      <input wicket:id="description" type="text" class="desc"
20             size="64" maxlength="255"/>
21    </div>
22    <div wicket:id="state" class="optional">
23      <label>State</label>
24      <select wicket:id="state"></select>
25    </div>
26    <div class="optional">
27      <label>Type</label>
28      <select wicket:id="type"></select>
29    </div>
30    <div class="optional">
31      <label>Created</label>
32      <select wicket:id="createdRelation"></select>
33      <input wicket:id="created" type="text" class="created"
34             size="11" maxlength="11"/>
35    </div>
36    <input wicket:id="filter" type="submit" class="filter" value="filter" />
37    <input wicket:id="clear" type="submit" class="clear" value="clear" />
38    </fieldset>
39  </form>
40</wicket:panel>
41</body>
42</html>
Note: See TracBrowser for help on using the repository browser.