Hi,

I've one checkbox,I need to capture the status of this checkbox(i.e checked is "true" and unchecked is "false") to the java method as parameter.

Please advise if there is any way i can accomplish this..

I've check box like this

<h:selectBooleanCheckbox  id="checkMedia" onclick="toggleDeleteAll()"/>

Javascript to get the status of check box like this..

 function toggleDeleteAll(){
        if(deleteAll == 'false')
            deleteAll = 'true';
        else
            deleteAll = 'false';
        return  deleteAll;
    }

I need to pass the return value of the javascript to the java method in command link action like thiss.

<h:commandLink id="delete"                                        action="#{VehicleListingController.delete(VehicleListingController.vehicle,deleteAll)}"
                                        value="DELETE">

Please advise me if anybody has inputs..

Thanks,
Anil

capturing the status of a checkbox in javascript

if(document.getElementById("checkBox").checked == true){
//do something
}
else{//do something else}
(where "checkBox" is replaced by the elements id you are using.)
Not sure if thats what your asking though??

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.