Following is my HTML source code. If I select any of the radio buttons in human task form,the output value always returns the value of the last radio button. (here :NotClean
)
<html>
<body>
<h2>Document varification</h2>
<hr>
<br/>
<input type="radio" name="Outcome" value="Done">Done<br/>
<input type="radio" name="Outcome" value="NotClean">NotClean<br/>
</body>
</html>