Subversion Repositories SmartDukaan

Rev

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

Rev 32477 Rev 33917
Line 823... Line 823...
823
	doGetAjaxRequestHandler(context + "/searchLeads?searchTerm=" + search_text,
823
	doGetAjaxRequestHandler(context + "/searchLeads?searchTerm=" + search_text,
824
		function(response) {
824
		function(response) {
825
			$('#' + domId).html(response);
825
			$('#' + domId).html(response);
826
		});
826
		});
827
}
827
}
-
 
828
 
-
 
829
$(document).on('click', ".arr-button-mk",
-
 
830
	function () {
-
 
831
		var startDate = $('.arr-start_date').val();
-
 
832
		doGetAjaxRequestHandler(context + "/rbmTodayArr?startDate=" + startDate, function (response) {
-
 
833
			$('#main-content').html(response);
-
 
834
 
-
 
835
		});
-
 
836
	});
-
 
837
 
-
 
838
$(document).on('click', ".rbm-today-arr",
-
 
839
	function () {
-
 
840
		doGetAjaxRequestHandler(context + "/rbmTodayArr", function (response) {
-
 
841
			$('#main-content').html(response);
-
 
842
 
-
 
843
		});
-
 
844
	});