PROBLEM - JQuery / Javascript - Make an ajax / Jquery call to get the list of check boxes to be disabled.


Problem


Make an ajax call to get the list of check boxes to be disabled.


Solution


1. Create a resource that returns the list of either checkbox ids or the check box indices to be disabled.

2. Create the Javascript / Jquery method to consume the list and then disable appropriate checkboxes.


function disableCheckBox(){
    sendAjaxGetCall(“/resourceUrl?input=”+input) .done(function(data) {
          data = data + '';
          var checkboxToDisable = data.split(",");
          for(int i=0;i < checkboxToDisable.length;i++){
                $(“#”+i).attr("disabled", true);
           }
     }).fail(function(xhr, error) {
           console.log('error: ' + xhr.statusText);
     });
}