﻿
function Page() 
{
	this.Name = null;
	this.DataService = null;
	this.DestinationField = null;
	this.ValidationHandler = null;	
}

Page.prototype.Init = function()
{
	//Alter the location field
	if ($id("destination")) 
	{
		//Make the destination field an autocomplete field
		this.DestinationField = new AutoCompletionField();
		this.DestinationField.Id = "destination";
		this.DestinationField.ItemName = "Value";
		this.DestinationField.ItemCode = "Code";
		this.DestinationField.Source = "AjaxFeeds/Locations.aspx";
		this.DestinationField.Required = true;
		this.DestinationField.ShowEmptyText = false;

		//Initialize the destination field
		this.DestinationField.Init();
	}
}