ccmjs / akless-components

ccm Components developed by André Kless

Home Page:https://ccmjs.github.io/akless-components/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ccm.submit.js ignores values true and false

mkaul opened this issue · comments

works correctly:

<input type="radio" name="team_abgaben_gleich" value="Ja">Ja  
<input type="radio" name="team_abgaben_gleich" value="Nein">Nein  

works incorrectly:

<input type="radio" name="team_abgaben_gleich" value="true">Ja  
<input type="radio" name="team_abgaben_gleich" value="false">Nein  

When I use this example with the latest version of ccm.submit.js, then everything works correctly. When exactly is true and false ignored? In the result data I got boolean true or boolean false.