[Jspro-cvs] jsPro/docs array.html,1.2,1.3
Brought to you by:
wigleys
|
From: <wi...@us...> - 2003-09-12 14:23:25
|
Update of /cvsroot/jspro/jsPro/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv27684
Modified Files:
array.html
Log Message:
- new keyChangeCase method
Index: array.html
===================================================================
RCS file: /cvsroot/jspro/jsPro/docs/array.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** array.html 6 Sep 2003 01:43:47 -0000 1.2
--- array.html 12 Sep 2003 14:23:22 -0000 1.3
***************
*** 35,39 ****
--- 35,41 ----
<script type="text/javascript">
var oTest = new Test();
+ var debug = new Debug();
var aSample = new Array(1,2,3,4,5,'a','b','c','d','e');
+ aSample['hello'] = 'hesdllo';
</script>
</head>
***************
*** 46,49 ****
--- 48,57 ----
Starting Array = 1,2,3,4,5,'a','b','c','d','e'
</td>
+ </tr>
+ <tr>
+ <td>Array.changeKeyCase()</td>
+ <td><input id="changeKeyCase1" name="input" type="text" size="5"/></td>
+ <td><input id="changeKeyCase" type="button" value="Calculate >" onclick="oTest.evaluateMethod(this, 'aSample')"/></td>
+ <td><input id="changeKeyCaseResult" name="output" type="text" size="30" readonly="readonly"/></td>
</tr>
<tr>
|