Hai,<br><br><br>I am using kumu.FormHelper to get the items value.<br>I can get the textbox value in the list.<br>But i want to get the check box value.whether the checkbox is checked or not?<br><br><br>Here with i attached my HTML coding...<br>
<br>HTML<br>:::::::::<br><br><br>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br>&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;<br>&quot;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&quot;&gt;<br>
&lt;html xmlns=&quot;<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>&quot;<br>xmlns:te=&quot;<a href="http://www.seasar.org/teeda/extension">http://www.seasar.org/teeda/extension</a>&quot; xml:lang=&quot;ja&quot; lang=&quot;ja&quot;&gt;<br>
&lt;head&gt;<br>&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot;/&gt;<br>&lt;link rel=&quot;stylesheet&quot; type=&quot; text/css&quot; href=&quot;../../css/global.css&quot;/&gt;<br>
&lt;link rel=&quot;stylesheet&quot; type=&quot; text/css&quot; href=&quot;../../css/master.css&quot;/&gt;<br>&lt;script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot; src=&quot;../../js/ajax.js&quot;&gt;&lt;/script&gt;<br>
&lt;script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot; src=&quot;../../js/kumu.js&quot;&gt;&lt;/script&gt;<br>&lt;script&gt;<br><br><b>function getEmployeeCode(){<br>var form = Kumu.FormHelper.create(&#39;Form&#39;, &#39;t&#39;);<br>
var items = form[&#39;employeemasterItems&#39;]<br>var item = items[0];<br><span style="color: rgb(51, 204, 0);">alert(item[&#39;employeecode&#39;]);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //I can get the value here.</span><br>
<span style="color: rgb(255, 0, 0);">alert(item[&#39;check&#39;])&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //here undefined</span></b><br><br>}<br><br>&lt;/script&gt;<br>&lt;/head&gt;<br>&lt;body&gt;<br>&lt;form id=&quot;Form&quot;&gt;&lt;br/&gt;<br>
&lt;table class=&quot;container&quot; border=&quot;1&quot; align=&quot;center&quot; bordercolor=&quot;#408080&quot;&gt;<br>&lt;tr class=&quot;heading&quot;&gt;<br>&lt;td&gt;&lt;/td&gt;&lt;td&gt;&lt;label id=&quot;employee&quot;/&gt;&lt;/td&gt;<br>
&lt;td&gt;&lt;label id=&quot;employeename&quot;/&gt;&lt;/td&gt;<br>&lt;/tr&gt;<br>&lt;div id=&quot;employeemasterItems&quot;&gt;<br>&lt;tr class=&quot;item&quot;&gt;<br>&lt;td&gt;&lt;input type=&quot;checkbox&quot; id=&quot;check&quot;/&gt;&lt;/td&gt;<br>
&lt;td&gt;&lt;input type=&quot;text&quot; id=&quot;employeecode&quot;&gt;&lt;/input&gt;&lt;/td&gt;<br>&lt;td&gt;&lt;span id=&quot;employeefirstname&quot;&gt;&lt;/span&gt;&lt;/td&gt;<br>&lt;/tr&gt;<br>&lt;/div&gt;<br>&lt;tr&gt;&lt;td colspan=&quot;18&quot;&gt;<br>
&lt;input type=&quot;button&quot; id=&quot;select&quot; value = &quot;$B%"%5%$%s(B&quot; onclick=&quot;getEmployeeCode()&quot;/&gt;<br>&lt;/td&gt;&lt;/tr&gt;<br>&lt;/table&gt;<br>&lt;/form&gt;<br>&lt;table align=&quot;center&quot;&gt;&lt;span id=&quot;allMessages&quot; style=&quot;color:red;&quot;/&gt;&lt;/table&gt;&lt;/body&gt;<br>
&lt;/html&gt;<br><br><br>How can i get the check box value?<br><br>Thanks in advance....<br><br><br><br><br><br>