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>&lt;html&gt;<br><pre>...............<br>...............<br>.................<br>
</pre>
<br><pre>&lt;script&gt;<br>function a(){<br>var form = Kumu.FormHelper.create(&#39;Form&#39;, &#39;t&#39;);<br>var items = form[&#39;fooItems&#39;]<br>var item = items[0];<br><br>item[&#39;ccc&#39;]=&quot;CCC&quot;;<br>items[0]=item;<br>
<br>alert(items[0][&#39;ccc&#39;]);                    //here i got the change value...But in Screen there is no change<br><br>}<br><br>&lt;/script&gt;<br>...............<br>...............<br>.................<br><br><br>
&lt;table border=&quot;1&quot;&gt;<br>       &lt;div id=&quot;fooItems&quot;&gt;<br>       &lt;tr&gt;<br>         &lt;td&gt;&lt;span id=&quot;fooNo&quot;&gt;100&lt;/span&gt;&lt;/td&gt;<br><br>               &lt;td&gt;&lt;input type=&quot;text&quot; id=&quot;aaa&quot; title=&quot;AAA&quot; /&gt;&lt;/td&gt;<br>
               &lt;td&gt;&lt;input type=&quot;text&quot; id=&quot;bbb&quot; title=&quot;BBB&quot; /&gt;&lt;/td&gt;<br>               &lt;td&gt;&lt;input type=&quot;text&quot; id=&quot;ccc&quot;&gt;&lt;/input&gt;&lt;/td&gt;<br>
<br>       &lt;/tr&gt;<br>       &lt;/div&gt;<br>&lt;/table&gt;<br><br>&lt;input type =&quot;button&quot; onclick=&quot;a()&quot;/&gt;<br><br>................<br>................<br>&lt;/html&gt;<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>