summaryrefslogtreecommitdiffstats
path: root/WebContent
diff options
context:
space:
mode:
authorJani Laakso <jani.laakso@itmill.com>2007-04-18 06:19:48 +0000
committerJani Laakso <jani.laakso@itmill.com>2007-04-18 06:19:48 +0000
commit78e180871a5f15d2bda91b6549b034fc8a2c7a53 (patch)
tree965ae176e9a1b0b842f658c096a7cd87024ee4ed /WebContent
parent121ae54f709f887c95592b95bdc09977642b8c3b (diff)
downloadvaadin-framework-78e180871a5f15d2bda91b6549b034fc8a2c7a53.tar.gz
vaadin-framework-78e180871a5f15d2bda91b6549b034fc8a2c7a53.zip
Added new demo FilterSelect, changed it's layout and texts.
svn changeset:1264/svn branch:trunk
Diffstat (limited to 'WebContent')
-rw-r--r--WebContent/WEB-INF/web.xml13
-rw-r--r--WebContent/index.html13
2 files changed, 26 insertions, 0 deletions
diff --git a/WebContent/WEB-INF/web.xml b/WebContent/WEB-INF/web.xml
index e649cafceb..5a11c3cd99 100644
--- a/WebContent/WEB-INF/web.xml
+++ b/WebContent/WEB-INF/web.xml
@@ -55,6 +55,19 @@
</servlet-mapping>
<servlet>
+ <servlet-name>FilterSelect</servlet-name>
+ <servlet-class>com.itmill.toolkit.terminal.web.ApplicationServlet</servlet-class>
+ <init-param>
+ <param-name>application</param-name>
+ <param-value>com.itmill.toolkit.demo.FilterSelect</param-value>
+ </init-param>
+ </servlet>
+ <servlet-mapping>
+ <servlet-name>FilterSelect</servlet-name>
+ <url-pattern>/FilterSelect/*</url-pattern>
+ </servlet-mapping>
+
+ <servlet>
<servlet-name>features</servlet-name>
<servlet-class>com.itmill.toolkit.terminal.web.ApplicationServlet</servlet-class>
<init-param>
diff --git a/WebContent/index.html b/WebContent/index.html
index 7c798c8058..b486a56fc8 100644
--- a/WebContent/index.html
+++ b/WebContent/index.html
@@ -207,6 +207,19 @@
</div>
<div id="feature-browser">
+ <h3><a href="FilterSelect?renderingMode=ajax">FilterSelect demo</a></h3>
+ <div class="option">
+ <p>
+ This example shows three select components with lazy loading functionality enabled.
+ First select works like Google Suggest, second uses "Contains" filter and third uses custom "Ends with" filter.
+ Click to select components and type few letters using your keyboard to see it in action.
+ </p>
+ </div>
+ Source code:
+ <span class="link"><a href="src/com/itmill/toolkit/demo/FilterSelect.java.html">FilterSelect.java</a></span>
+ </div>
+
+ <div id="feature-browser">
<h3><a href="ModalWindow?renderingMode=ajax">Modal window</a></h3>
<div class="option">
Example of how Modal Windows may be created using Window component.