[SOLVED] Â How to customize text control |
12/3/2013 2:53:19 PM |
PHPRunner General questions | |
Z
Zaboor author
I want to use a virtual keyboard ( http://www.greywyvern.com/code/javascript/keyboard ) class="keyboardInput"
<input type="text" value="" class="keyboardInput">
<script type="text/javascript" src="keyboard.js" charset="UTF-8"></script>
<DIV class="fieldcontrol_Full_Name {$fielddispclass_Full_Name}">{$Full_Name_editcontrol} </DIV>
|
|
C
|
cgphp 12/3/2013 |
There is a keypad plugin in the marketplace. Check it out https://xlinesoft.com/marketplace/products_view.php?editid1=25 |
Z
|
Zaboor author 12/4/2013 |
There is a keypad plugin in the marketplace. Check it out https://xlinesoft.com/marketplace/products_view.php?editid1=25
|
![]() |
Sergey Kornilov admin 12/4/2013 |
To modify the properties of input control use Javascript OnLoad event. Specifically, to assign a new class to input control use jQuery's addClass() function: |
Z
|
Zaboor author 12/4/2013 |
To modify the properties of input control use Javascript OnLoad event. Specifically, to assign a new class to input control use jQuery's addClass() function: http://api.jquery.com/addClass/
$( "XXXXXX" ).addClass( "keyboardInput" );
|
![]() |
Sergey Kornilov admin 12/5/2013 |
Check this example for inspiration: |