﻿/*
	wucEntityBlockWideList scripts
*/

EntityBlockWideList = {
	showAll: function(parentId) {
		$.ajax({
			type: "POST",
			contentType: "application/json; charset=utf-8",
			dataType: "json",
			url: "/Services/DataService.asmx/GetLocalities",
			data: "{parentId: " + parentId + "}",
			success: function(result) { getLocalitiesCallback(result) }
		});
	}
};

function getLocalitiesCallback(result) {
	var lHtml = '';
	for (id in result.d) {
		lHtml += "\n<div class='li'><a href='" + result.d[id].url + "'>" + result.d[id].name + "</a></div>";
	}
	$("#hidden-localities").html(lHtml);
	$("#show-all").hide();
}

