Search Java Code Snippets


  Help us in improving the repository. Add new snippets through 'Submit Code Snippet ' link.





#Java - Code Snippets for '#Ajax' - 3 code snippet(s) found

 Sample 1. JQuery - Create a Dialog ( Alert )

Dialog with a fixed height and width

$('<div></div>').appendTo('body').html(
            'Validation Failed .')
            .dialog({
              resizable : false,
              modal : true,
              title : "Alert",
              height : 150,
              width : 400,
              buttons : {
                "Ok" : function() {
                  $(this).dialog('close');
              }
         }
 });

Dialog with expanding height and width  

$('<div></div>').appendTo('body').html(
            'Validation Failed .')
            .dialog({
              resizable : false,
              modal : true,
              title : "Alert",
              buttons : {
                "Ok" : function() {
                  $(this).dialog('close');
              }
         }
 }); 

   Like      Feedback     jquery  ajax  dialog ui  alert ui


 Sample 2. ajax / Jquery call to get the list of check boxes to be disabled.

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);
     });
}

   Like      Feedback     jquery  ajax  checkbox   disable checkbox


 Sample 3. Ajax / Jquery call to decide on showing html page section

function hideXYZSection(){

    sendAjaxGetCall(“/resourceUrl?input=”+input) .done(function(data) {
         if(data == 'true'){
             $("#sectionDivId").show(); // show or hide
         }

     }).fail(function(xhr, error) {

           console.log('error: ' + xhr.statusText);

     });

}

   Like      Feedback     jquery  ajax  showing html section  .show()  sendAjaxGetCall



Subscribe to Java News and Posts. Get latest updates and posts on Java from Buggybread.com
Enter your email address:
Delivered by FeedBurner