Forums

This topic is locked

How to pass checkbox ststus to java method as parameter

Posted 23 Feb 2009 22:17:08
1
has voted
23 Feb 2009 22:17:08 Anil Reddy posted:
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
[code> <h:selectBooleanCheckbox id="checkMedia" onclick="toggleDeleteAll()"/> [/code]
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 this.

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

Please advise me if anybody has inputs..

Thanks,
Anil

Reply to this topic