Subversion Repositories SmartDukaan

Rev

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

Rev 28071 Rev 28272
Line 28... Line 28...
28
	$(document).on('click', ".block-brand-mapping", function() {
28
	$(document).on('click', ".block-brand-mapping", function() {
29
		blockBrandMapping("main-content")
29
		blockBrandMapping("main-content")
30
 
30
 
31
 
31
 
32
	});
32
	});
-
 
33
	
-
 
34
	$(document).on('click', ".brands-limit", function() {
-
 
35
		brandsLimit("main-content")
-
 
36
 
-
 
37
 
-
 
38
	});
-
 
39
	
-
 
40
 
33
 
41
 
34
 
42
 
35
	$(document).on('click', ".partnerInfoReadOnly",
43
	$(document).on('click', ".partnerInfoReadOnly",
36
		function() {
44
		function() {
37
 
45
 
Line 308... Line 316...
308
	doGetAjaxRequestHandler(context + "/getBlockBrandMapping", function(response) {
316
	doGetAjaxRequestHandler(context + "/getBlockBrandMapping", function(response) {
309
		$('#' + domId).html(response);
317
		$('#' + domId).html(response);
310
 
318
 
311
	});
319
	});
312
}
320
}
-
 
321
function brandsLimit(domId) {
-
 
322
	doGetAjaxRequestHandler(context + "/getBrandslimit", function(response) {
-
 
323
		$('#' + domId).html(response);
313
 
324
 
-
 
325
	});
-
 
326
}
314
function storeInfo(domId) {
327
function storeInfo(domId) {
315
	doGetAjaxRequestHandler(context + "/getAllStores", function(response) {
328
	doGetAjaxRequestHandler(context + "/getAllStores", function(response) {
316
		$('#' + domId).html(response);
329
		$('#' + domId).html(response);
317
	});
330
	});
318
}
331
}