summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Keyboard.page
diff options
context:
space:
mode:
authorctrlaltca@gmail.com <>2011-06-01 23:01:03 +0000
committerctrlaltca@gmail.com <>2011-06-01 23:01:03 +0000
commit3baba6fb4b6c17ff77eb4a13a812ccde9263dce2 (patch)
treeb7c6b4ad31e5fa093b0c0e3eae43070095e60351 /demos/quickstart/protected/pages/Controls/Keyboard.page
parentd0ce04fb74c0163951bbb36fa4f05973d91b02eb (diff)
gave the build scripts a run so that new ids can be generated.
Added new docs to the quickstart.pdf misc doc fixes
Diffstat (limited to 'demos/quickstart/protected/pages/Controls/Keyboard.page')
-rw-r--r--demos/quickstart/protected/pages/Controls/Keyboard.page12
1 files changed, 6 insertions, 6 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Keyboard.page b/demos/quickstart/protected/pages/Controls/Keyboard.page
index 06c91049..47e15e78 100644
--- a/demos/quickstart/protected/pages/Controls/Keyboard.page
+++ b/demos/quickstart/protected/pages/Controls/Keyboard.page
@@ -1,29 +1,29 @@
<com:TContent ID="body" >
-<h1>TKeyboard</h1>
+<h1 id="92009">TKeyboard</h1>
<com:DocLink ClassPath="System.Web.UI.WebControls.TKeyboard" />
-<p>
+<p id="460010" class="block-content">
<tt>TKeyboard</tt> 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.
</p>
-<p>
+<p id="460011" class="block-content">
To use TKeyboard, write a template like following:
</p>
-<com:TTextHighlighter Language="prado" CssClass="source">
+<com:TTextHighlighter Language="prado" CssClass="source block-content" id="code-460120">
&lt;com:TTextBox ID="PasswordInput" />
&lt;com:TKeyboard ForControl="PasswordInput" />
</com:TTextHighlighter>
-<p>
+<p id="460012" class="block-content">
A TKeyboard control is associated with a <tt>TTextBox</tt> control by specifying
<tt>ForControl</tt> 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 <tt>AutoHide</tt> to false to keep the keyboard showing all the time.
</p>
-<p>
+<p id="460013" class="block-content">
The appearance of the keyboard can also be changed by specifying a customized CSS file via
<tt>CssUrl</tt>. By default, the CSS class name for the keyboard is 'Keyboard'. This may
also be changed by specifying <tt>KeyboardCssClass</tt>