Um teclado virtual para entrada de texto.
$render = '';
$resposta = '';
dc.cw("Keyboard", "widget_default", {
id: "default"
, useThemeRoller: true
, showOn: "focus"
, showAnim: "fadeIn"
, keypadOnly: false
, layoutName: "qwerty"
});
dc.cw("Keyboard", "widget_qwerty", {
id: "qwerty"
, useThemeRoller: true
, showOn: "focus"
, showAnim: "fadeIn"
, keypadOnly: false
, layoutName: "qwertyBasic"
});
dc.cw("Keyboard", "widget_alphabetic", {
id: "alphabetic"
, useThemeRoller: true
, showOn: "focus"
, showAnim: "fadeIn"
, keypadOnly: false
, layoutName: "alphabetic"
});
dc.cw("Keyboard", "widget_custom1", {
id: "custom1"
, useThemeRoller: true
, showOn: "focus"
, showAnim: "fadeIn"
, keypadOnly: false
, layoutName: "custom"
, layoutTemplate: "prime\-back,faces\-clear,rocks\-close"
});
dc.cw("Keyboard", "widget_custom2", {
id: "custom2"
, useThemeRoller: true
, showOn: "focus"
, showAnim: "fadeIn"
, keypadOnly: false
, layoutName: "custom"
, layoutTemplate: "create\-space\-your\-close,owntemplate\-shift,easily\-space\-spacebar"
});
dc.cw("Keyboard", "widget_keypad", {
id: "keypad"
, useThemeRoller: true
, showOn: "focus"
, showAnim: "fadeIn"
});
dc.cw("Keyboard", "widget_password", {
id: "password"
, useThemeRoller: true
, showOn: "focus"
, showAnim: "fadeIn"
});
dc.cw("Keyboard", "widget_rtl", {
id: "rtl"
, useThemeRoller: true
, showOn: "focus"
, showAnim: "fadeIn"
, keypadOnly: false
, layoutName: "qwerty"
, isRTL: true
});