Subversion Repositories SmartDukaan

Rev

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

Rev 23500 Rev 23556
Line 64... Line 64...
64
	
64
	
65
	$(".schemes-download-page").live('click', function() {
65
	$(".schemes-download-page").live('click', function() {
66
		console.log("Schemes Download Clicked...")
66
		console.log("Schemes Download Clicked...")
67
		loadSchemesDownloadPage("main-content");
67
		loadSchemesDownloadPage("main-content");
68
	});
68
	});
-
 
69
	
-
 
70
	$(".schemes-update").live('click', function() {
-
 
71
		loadSchemeUpdatePage("main-content");
-
 
72
	});
69
});
73
});
70
 
74
 
71
function configureTagListingItemsDescriptionDropDown(){
75
function configureTagListingItemsDescriptionDropDown(){
72
	$(document).ready(function() {
76
	$(document).ready(function() {
73
        $('#tagListingItemsDescription').multiselect({
77
        $('#tagListingItemsDescription').multiselect({
Line 186... Line 190...
186
 
190
 
187
function loadSchemesDownloadPage(domId){
191
function loadSchemesDownloadPage(domId){
188
	doGetAjaxRequestHandler(context+"/schemes/downloadPage", function(response){
192
	doGetAjaxRequestHandler(context+"/schemes/downloadPage", function(response){
189
		$('#' + domId).html(response);
193
		$('#' + domId).html(response);
190
	});
194
	});
-
 
195
}
-
 
196
 
-
 
197
function loadSchemeUpdatePage(domId){
-
 
198
	doGetAjaxRequestHandler(context+"/schemes/update-schemes-page", function(response){
-
 
199
		$('#' + domId).html(response);
-
 
200
	});
191
}
201
}
192
202