I have a "p:selectBooleanCheckbox
" in my xhtml page.
I have inserted this code selected="true"
to make it checked by default.
SO when i run the page, and click for the first time it becames "unchecked" ,
but since then when i click on it it still unchecked , it doesn't change.
So to reseume =>my p:selectBooleanCheckbox is clickable just once after that when i click on it, it doesn't change (it still unchekeced)
this is the code in my xhtml page:
<div class="row">
<p:outputLabel for="spec_telOwner" value="Propriétaire du num" styleClass="col-md-3 control-label" />
<div class="col-md-3">
<div class="input-icon right">
<p:selectBooleanCheckbox selected="true" id="spec_telOwner" value="#{searchEngine.spec.phoneLineOwner}"/>
</div>
</div>
</div>
i'm using eclipse sts , and i run my application on InternetExplorer.