[ Index ] |
|
Code source de vtiger CRM 5.0.2 |
1 <?xml version="1.0" encoding="utf-8" ?> 2 <bindings xmlns="http://www.mozilla.org/xbl"> 3 <binding id="numericfield"> 4 <implementation> 5 <constructor> 6 this.keypress = CheckIsDigit ; 7 </constructor> 8 <method name="CheckIsDigit"> 9 <body> 10 var iCode = keyCode ; 11 12 var bAccepted = 13 ( 14 ( iCode >= 48 && iCode <= 57 ) // Numbers 15 || (iCode >= 37 && iCode <= 40) // Arrows 16 || iCode == 8 // Backspace 17 || iCode == 46 // Delete 18 ) ; 19 20 return bAccepted ; 21 </body> 22 </method> 23 </implementation> 24 <events> 25 <event type="keypress" value="CheckIsDigit()" /> 26 </events> 27 </binding> 28 </bindings>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sun Feb 25 10:22:19 2007 | par Balluche grâce à PHPXref 0.7 |