Hi all!<br><br>I'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't<br>get the value of the input type password. <br>
<br>This, when using the function "AjaxHandler.buildPostRequest()" in the "pluginName.ajax.js" file.<br><br>It is because in the file "htdocs/js/AjaxHelper.js", line 27, only for the type "text" it<br>
accesses the value using "htmlElement.value", and for all the others it uses<br>"htmlElement.getAttribute('value')".<br><br>So, line 27 is:<br> if (inputType == 'text') { <br><br>
and sould be:<br> if (inputType == 'text' || inputType == 'password') { <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