From ea76a1cc93ceb9dd483f285fefe73e3b4b08e590 Mon Sep 17 00:00:00 2001 From: Jani Laakso Date: Tue, 24 Apr 2007 12:48:32 +0000 Subject: [PATCH] "Keybinding is under development and considered as alpha quality" note added. svn changeset:1317/svn branch:trunk --- WebContent/index.html | 3 ++- src/com/itmill/toolkit/demo/KeyboardShortcut.java | 11 +++++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/WebContent/index.html b/WebContent/index.html index 4c4a5abc5d..742688fc77 100644 --- a/WebContent/index.html +++ b/WebContent/index.html @@ -186,7 +186,7 @@

This example shows select component with default and lazy loading functionality enabled (a.k.a Google Suggest). Click to first select component and type few letters using your keyboard to see it in action. - Second select component has default functionality. + Second select component has default functionality.

Source code: @@ -219,6 +219,7 @@

Keyboard events demo

Contains few Toolkit UI components that can be interacted by pressing keys in keyboard. + Note: This feature is under development and is considered as alpha.

Source code: KeyboardShortcut.java diff --git a/src/com/itmill/toolkit/demo/KeyboardShortcut.java b/src/com/itmill/toolkit/demo/KeyboardShortcut.java index 6798dc25fd..b60429fbec 100644 --- a/src/com/itmill/toolkit/demo/KeyboardShortcut.java +++ b/src/com/itmill/toolkit/demo/KeyboardShortcut.java @@ -5,6 +5,12 @@ import com.itmill.toolkit.event.ShortcutAction; import com.itmill.toolkit.event.Action.Handler; import com.itmill.toolkit.ui.*; +/** + * Note: This feature is under development and is considered as alpha + * + * @author IT Mill Ltd. + * + */ public class KeyboardShortcut extends com.itmill.toolkit.Application implements Handler { private Window main; @@ -41,8 +47,9 @@ public class KeyboardShortcut extends com.itmill.toolkit.Application implements */ main .addComponent(new Label( - "This is a test program for shortcut actions
" - + "Note: if events do not work, set focus to Textfield first!", + "

Test application for shortcut actions

" + + "Note: This feature is under development and is considered as alpha.
" + + "Note: if events do not work, set focus to Textfield first.", Label.CONTENT_XHTML)); main .addComponent(new Label( -- 2.39.5