Changeset 2159

Show
Ignore:
Timestamp:
08/27/2007 04:23:33 PM
Author:
xue
Message:

Added tutorial for TKeyboard.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/demos/quickstart/protected/pages/GettingStarted/NewFeatures.page

    r2096 r2159  
    1010<ul> 
    1111<li>Added a new control <a href="?page=Controls.TabPanel">TTabPanel</a> that displays tabbed views.</li> 
     12<li>Added a new control <a href="?page=Controls.Keyboard">TKeyboard</a> that displays a virtual keyboard for text input.</li> 
    1213<li>Added a new module TCacheHttpSession that stores session data using a cache module to improve the session performance.</li> 
    1314<li>Added Oracle DB support to Active Record</li> 
  • trunk/framework/Web/Javascripts/source/prado/controls/controls.js

    r2158 r2159  
    458458    type : function(key) 
    459459    { 
    460  
    461460        var input = this.forControl; 
    462461        var command = key.toLowerCase(); 
     
    475474 
    476475        if (command != 'exit') input.focus(); 
    477  
    478476    }, 
    479477 
     
    494492            else if (value == 'del') {this.selection.moveEnd("character", 1); this.selection.text = '';} 
    495493            else {this.selection.text = value;} 
    496  
    497494            this.selection.select(); 
    498495        } 
  • trunk/framework/Web/UI/WebControls/TKeyboard.php

    • Property svn:keywords set to Id
    r2158 r2159  
    77 * @copyright Copyright &copy; 2005-2007 PradoSoft 
    88 * @license http://www.pradosoft.com/license/ 
    9  * @version $Id:
     9 * @version $Id
    1010 * @package System.Web.UI.WebControls 
    1111 * @since 3.1.1 
     
    3434 * 
    3535 * @author Sergey Morkovkin <sergeymorkovkin@mail.ru> and Qiang Xue <qiang.xue@gmail.com> 
    36  * @version $Id:
     36 * @version $Id
    3737 * @since 3.1.1 
    3838 */