From 5e3caed030722be404c1b56f2af1e149799b5eda Mon Sep 17 00:00:00 2001 From: xue <> Date: Mon, 27 Aug 2007 21:23:33 +0000 Subject: Added tutorial for TKeyboard. --- .../protected/pages/Controls/Keyboard.page | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 demos/quickstart/protected/pages/Controls/Keyboard.page (limited to 'demos/quickstart/protected/pages/Controls/Keyboard.page') diff --git a/demos/quickstart/protected/pages/Controls/Keyboard.page b/demos/quickstart/protected/pages/Controls/Keyboard.page new file mode 100644 index 00000000..06c91049 --- /dev/null +++ b/demos/quickstart/protected/pages/Controls/Keyboard.page @@ -0,0 +1,34 @@ + + +

TKeyboard

+ + +

+TKeyboard displays a virtual keyboard that users can click on to enter input in +an associated text box. It helps to reduce the keyboard recording hacking. +

+ +

+To use TKeyboard, write a template like following: +

+ +<com:TTextBox ID="PasswordInput" /> +<com:TKeyboard ForControl="PasswordInput" /> + + +

+A TKeyboard control is associated with a TTextBox control by specifying +ForControl to be the ID of that control. When the textbox is in focus, +a virtual keyboard will pop up; and when the text box is losing focus, the keyboard +will hide automatically. Set AutoHide to false to keep the keyboard showing all the time. +

+ +

+The appearance of the keyboard can also be changed by specifying a customized CSS file via +CssUrl. By default, the CSS class name for the keyboard is 'Keyboard'. This may +also be changed by specifying KeyboardCssClass +

+ + + +
$Id$
\ No newline at end of file -- cgit v1.2.3