Hi all!<br><br>I&#39;ve searched the internet if someone else pointed out this problem, but nothing found:<br><br>When getting the values of a form in a plugin implementing the ajaxable interface, it doesn&#39;t<br>get the value of the input type password. <br>
<br>This, when using the function &quot;AjaxHandler.buildPostRequest()&quot; in the &quot;pluginName.ajax.js&quot; file.<br><br>It is because in the file &quot;htdocs/js/AjaxHelper.js&quot;, line 27, only for the type &quot;text&quot; it<br>
accesses the value using &quot;htmlElement.value&quot;, and for all the others it uses<br>&quot;htmlElement.getAttribute(&#39;value&#39;)&quot;.<br><br>So, line 27 is:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (inputType == &#39;text&#39;) { <br><br>
and sould be:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (inputType == &#39;text&#39; || inputType == &#39;password&#39;) { <br><br>at least with the last one everything worked fine for me...<br><br>Hope this helps!<br clear="all"><br>-- <br>Nicolás Eugenio Ozimiça<br>
Universidad de Chile