Hai,<br><br>I want to change the xxxItems in javascript.<br><br>I tried some logics using kumu.FormHelper<br><br>The following is my coding<br><br><html><br><pre>...............<br>...............<br>.................<br>
</pre>
<br><pre><script><br>function a(){<br>var form = Kumu.FormHelper.create('Form', 't');<br>var items = form['fooItems']<br>var item = items[0];<br><br>item['ccc']="CCC";<br>items[0]=item;<br>
<br>alert(items[0]['ccc']); //here i got the change value...But in Screen there is no change<br><br>}<br><br></script><br>...............<br>...............<br>.................<br><br><br>
<table border="1"><br> <div id="fooItems"><br> <tr><br> <td><span id="fooNo">100</span></td><br><br> <td><input type="text" id="aaa" title="AAA" /></td><br>
<td><input type="text" id="bbb" title="BBB" /></td><br> <td><input type="text" id="ccc"></input></td><br>
<br> </tr><br> </div><br></table><br><br><input type ="button" onclick="a()"/><br><br>................<br>................<br></html><br></pre>is this logic correct?<br>
<br>In this logic i couldnt get the values in screen?<br><br>please give any other logic?<br><br>Thanks in advance,<br>トマス<br>