Subversion Repositories SmartDukaan

Rev

Rev 29728 | Rev 29731 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 29728 Rev 29730
Line 1354... Line 1354...
1354
       $(document).on('change', "#performance-months", function() {
1354
       $(document).on('change', "#performance-months", function() {
1355
       
1355
       
1356
            var month = 	$("#performance-months").val();
1356
            var month = 	$("#performance-months").val();
1357
             console.log(month);   
1357
             console.log(month);   
1358
          
1358
          
1359
           doGetAjaxRequestHandler(context + "/getMonthsInvestment",function (response) {
1359
           doGetAjaxRequestHandler(context + "/getMonthsInvestment?month=" + month,function (response) {
1360
                   console.log(response);
1360
                   console.log(response);
1361
                  $("#performanceContainer").html(response);
1361
                  $("#performanceContainer").html(response);
1362
        
1362
        
1363
        });
1363
        });
1364
              	});
1364
              	});