Anotações de um desenvolvedor sobre a prototype.js

abrange a versão 1.4.0

por
Última atualização : 16 de abril de 2006
Outros idiomas

Sumário

O que é isso? Artigo relacionado As funções utilitárias Utilizando a função $() Usando a função $F() Usando a função $A() Usando a função $H() Usando a função $R() Using the Try.these() function O objeto Ajax Utilizando a classe Ajax.Request Utilizando a classe Ajax.Updater Enumerando... Uau! Putz! Oba! Laços a la Ruby Seus arrays bombados Livros que eu recomendo Referência da prototype.js Extensões das classes JavaScript Extensões da classe Object Extensões da classe Number Extensões da classe Function Extensões da classe String Extensões da classe Array Extensões do objeto document do DOM Extensões do objeto Event Novos objetos e classes definidos em prototype.js The PeriodicalExecuter object The Prototype object The Class object The Ajax.Base The Ajax.Request The options argument object The Ajax.Updater The Ajax.PeriodicalUpdater The Element object The Abstract object The Abstract.Insertion The Insertion object The Insertion.Before The Insertion.Top The Insertion.Bottom The Insertion.After The Field object The Form object The Form.Element object The Form.Element.Serializers object The Abstract.TimedObserver The Form.Element.Observer The Form.Observer The Abstract.EventObserver The Form.Element.EventObserver The Form.EventObserver The Position object (preliminary documentation)

O que é isso?

Caso você ainda não tenha tido a oportunidade de utilizá-la, prototype.js é uma ótima biblioteca javascript escrita por Sam Stephenson. Esta coleção de funções é impressionantemente bem escrita e bem pensada, utiliza técnicas de acordo com os padrões atuais e alivia seu trabalho na hora de produzir as páginas altamente interativas que caracterizam a chamada Web 2.0.

Se você andou tentando utilizar essa biblioteca recentemente, você provavelmente notou que a documentação não pode ser considerada um de seus pontos fortes. Tal como muitos outros programadores fizeram, eu também só sonsegui entender como utilizar a prototype.js ao inspecionar seu código-fonte. Eu imaginei que poderia ser útil se eu fizesse algumas anotações enquanto eu aprendia e então compartilhasse com todo mundo.

Também estou incluindo aqui uma referência não-oficial para os objetos, classes, funções e extensões implementadas nessa biblioteca.

À medida que você ler os exemplos e a referência, caso você tenha familiaridade com a linguagem de progamação Ruby você notará uma semelhança proposital entre as classes constituintes de Ruby e muitas das extensões implementadas por esta biblioteca.

sumário

Artigo relacionado

Advanced JavaScript guide (em inglês).

sumário

As funções utilitárias

A biblioteca vêm com diversos objetos pré-definidos e funções utilitárias. O objetivo claro dessas funções é evitar uma imensidão de digitação repetitiva e propensa a erros, que eu costumo comparar a musculação.

sumário

Utilizando a função $()

A função $() é um conveniente atalho para as inúmeras ocorrências da chamada à função document.getElementById() do DOM. Tal como a função do DOM, esta retorna o elemento que é identificado pelo valor id passado como argumento.

No entanto, diferentemente da função do DOM, essa vai mais além. Você pode passar mais de um argumento e a função $() retornará um objeto Array com todos os elementos requisitados. O exemplo a seguir ilustra esse fato.

<HTML>
<HEAD>
<TITLE> Página de Teste </TITLE>
<script src="prototype-1.4.0.js"></script>

<script>
	function teste1()
	{
		var d = $('myDiv');
		alert(d.innerHTML);
	}

	function teste2()
	{
		var divs = $('myDiv','myOtherDiv');
		for(i=0; i<divs.length; i++)
		{
			alert(divs[i].innerHTML);
		}
	}
</script>
</HEAD>

<BODY>
	<div id="myDiv">
		<p>Este é um parágrafo</p>
	</div>
	<div id="myOtherDiv">
		<p>Outro parágrafo</p>
	</div>

	<input type="button" value=Teste1 onclick="teste1();"><br> 
	<input type="button" value=Teste2 onclick="teste2();"><br> 

</BODY>
</HTML>

Outro ponto interessante dessa função é que você pode passar tanto o valor string do id de um elemento quanto o próprio objeto do elemento. Isso deixa a função mais flexível e bastante prática quando se deseja criar outras funções que tratam os argumentos da mesma forma.

sumário

Usando a função $F()

A função $F() é outro atalho bem-vindo. Ela retorna o valor de qualquer campo de um formulário (input control) tais como caixas de texto ou listas. A função pode receber como parâmetro tanto o id do elemento como o próprio objeto do elemento.

<script>
	function teste3()
	{
		alert(  $F('nomeUsuario')  );
	}
</script>

<input type="text" id="nomeUsuario" value="João da Silva"><br> 
<input type="button" value=Teste3 onclick="teste3();"><br> 
			

sumário

Usando a função $A()

A função $A() converte o único argumento que ela aceita em um objeto do tipo Array.

Esta função, combinada com as extensões da classe Array, torna mais fácil converter ou copiar qualquer lista enumerável em um Array. Uma utilização sugerida é para converter objetos do tipo NodeList do DOM em arrays comuns, que podem ser percorridos mais eficientemente. Veja o exemplo a seguir.

<script>

	function mostraOpcoes(){
		var minhaNodeList = $('lstEmpregados').getElementsByTagName('option');
		var nodes = $A(minhaNodeList);

		nodes.each(function(node){
				alert(node.nodeName + ': ' + node.innerHTML);
			});
	}
</script>

<select id="lstEmpregados" size="10" >
	<option value="5">Buchanan, Steven</option>
	<option value="8">Callahan, Laura</option>
	<option value="1">Davolio, Nancy</option>
</select>

<input type="button" value="Mostre items da lista" onclick="mostraOpcoes();" > 
			

sumário

Usando a função $H()

A função $H() converte objetos em um Hash enumerável, que se assemelha a um arrays associativo (lista de pares chave/valor).

<script>
	function testarHash()
	{
		//criando o objeto
		var a = {
			primeiro: 10,
			segundo: 20,
			terceiro: 30
			};

		//transformando-o em um hash
		var h = $H(a);
		alert(h.toQueryString()); //mostra: primeiro=10&segundo=20&terceiro=30
	}

</script>
			

sumário

Usando a função $R()

A função $R() é um atalho para new ObjectRange(limiteInferior, limiteSuperior, excluirLimites).

Siga para a documentação da classe ObjectRange onde você encontrará uma explicação mais abrangente sobre essa classe. Por momento, vamos examinar um exemplo simplificado que também demonstra o uso de iteradores por meio do método each. Maiores detalhes a respeito desse método podem ser encontrados na documentação da classe Enumerable.

<script>
	function demoDollar_R(){
		var range = $R(10, 20, false);
		range.each(function(value, index){
			alert(value);
		});
	}

</script>

<input type="button" value="Contagem" onclick="demoDollar_R();" > 
			

sumário

Using the Try.these() function

Utilizando a função Try.these()

A função Try.these() facilita as coisas na hora que se torna necessário experimentar diferentes chamadas a funções até que uma funcione. Esta função aceita uma lista de chamadas a outras funções como argumento. Então cada chamada é executada na ordem dada, até que uma dê certo e então o resultado dessa chamada é retornado.

No exemplo a seguir, a propriedade xmlNode.text funciona em alguns browsers, e xmlNode.textContent funciona em outros browsers. Ao utilizarmos a função Try.these() nós podemos sempre retornar a chamada que funciona corretamente (sem erros).

<script>
function getXmlNodeValue(xmlNode){
	return Try.these(
		function() {return xmlNode.text;},
		function() {return xmlNode.textContent;)
		);
}
</script>
			

sumário

O objeto Ajax

Tá bem, as funções utilitárias mencionadas acima são legais mas convenhamos, elas também não são a coisa mais avançada que já se viu, não é? Você provavelmente poderia ter escrito essas funções sozinho ou talvez até você já tenha algumas funções semelhantes em seus próprios scripts. Só que essas funções são apenas a ponta do iceberg.

Eu tenho certeza que seu interesse pela prototype.js advém principalmente de suas capacidades relacionadas a AJAX. Então vamos explicar como a biblioteca facilita as coisas pra você quando é necessário implementar operações de AJAX.

O objeto Ajax é pré-definido na biblioteca, criado para encapsular e simplificar o código traiçoeiro que é necessário quando se implementam funcionalidades AJAX. Este objeto contém uma série de classes que disponibilizam lógica AJAX. Vamos dar uma olhada em algumas desas classes.

sumário

Utilizando a classe Ajax.Request

Se você não estiver utilizando nenhuma biblioteca auxiliar, você provavelmente está escrevendo uma montanha de código para criar um objeto XMLHttpRequest, acompanhar seu progresso assincronamente, e então extrair a resposta e processá-la. Considere-se um sortudo se você não precisa suportar mais de um tipo de browser.

Para auxiliar com operações AJAX, a biblioteca define a classe Ajax.Request.

Digamos que você tenha uma aplicação que pode se comunicar com o servidor através de uma url como http://servidor/app/busca_vendas?empID=1234&ano=1998, que retorna uma resposta em XML similar à seguinte.

<?xml version="1.0" encoding="utf-8" ?> 
<ajax-response>
	<response type="object" id="productDetails">
		<monthly-sales>
			<employee-sales>
				<employee-id>1234</employee-id> 
				<year-month>1998-01</year-month> 
				<sales>$8,115.36</sales> 
			</employee-sales>
			<employee-sales>
				<employee-id>1234</employee-id> 
				<year-month>1998-02</year-month> 
				<sales>$11,147.51</sales> 
			</employee-sales>
		</monthly-sales>
	</response>
</ajax-response>			
			

Contactar o servidor para buscar esse XML é bastante simples utilizando um objeto Ajax.Request. O exemplo abaixo mostra como isso pode ser feito.

<script>
	function buscaVendas()
	{
		var empID = $F('lstEmpregados');
		var y = $F('lstAnos');
		var url = 'http://servidor/app/busca_vendas';
		var pars = 'empID=' + empID + '&ano=' + y;
		
var myAjax = new Ajax.Request( url, { method: 'get', parameters: pars, onComplete: mostraResposta });
} function mostraResposta(requisicaoOriginal) { //copia o XML retornado para o textarea $('resultado').value = requisicaoOriginal.responseText; } </script> <select id="lstEmpregados" size="10" onchange="buscaVendas()"> <option value="5">Buchanan, Steven</option> <option value="8">Callahan, Laura</option> <option value="1">Davolio, Nancy</option> </select> <select id="lstAnos" size="3" onchange="buscaVendas()"> <option selected="selected" value="1996">1996</option> <option value="1997">1997</option> <option value="1998">1998</option> </select> <br><textarea id=resultado cols=60 rows=10 ></textarea>

Dá para você perceber o segundo parâmetro passado ao contrutor do objeto Ajax.Request? O parâmetro {method: 'get', parameters: pars, onComplete: mostraResposta} representa um objeto anônimo em notação literal (conhecida por JSON). O que ele significa é que estamos passando um objeto que tem uma propriedade chamada method que contém a string 'get', uma outra propriedade chamada parameters que contém a querystring da requisição HTTP, e uma propriedade/método onComplete contendo a função mostraResposta.

Ainda há mais algumas propriedades que você pode definir nesse objeto, tais como asynchronous, que pode ser true ou false e determina se a chamada AJAX ao servidor será feita de maneira assíncrona ou não (o valor default é true.)

Este parâmetro define as opções para a chamada AJAX. Em nosso exemplo estamos chamando a url do primeiro argumento através de um comando HTTP GET, passando a querystring contida na variável pars, e o objeto Ajax.Request irá chamar a função mostraResposta quando terminar de buscar receber a resposta.

Como se sabe, o objeto XMLHttpRequest anuncia o progresso durante a chamada HTTP. Este progresso pode representar quatro diferentes estágios:Loading (carregando), Loaded (carregado), Interactive (interativo), or Complete (completo). Você pode fazer com que o objeto Ajax.Request chame uma função sua em cada um desses estágios, sendo o Complete o mais comum. Para especificar a função para o objeto, basta utilizar propriedades/métodos chamados onXXXXX nas opções da chamada, tal como a propriedade onComplete em nosso exemplo anterior. A função especificada será chamada pelo objeto com dois argumentos, o primeiro será o próprio objeto XMLHttpRequest (também chamado de XHR), o segundo argumento será o resultado da avaliação (eval()) do cabeçalho HTTP X-JSON (se houver um presente na resposta). Você poderá então utilizar esse o XHR para extrair os dados retornados e possivelmente checar a propriedade status, que informará o resultado (código) da chamada HTTP. O cabeçalho X-JSON é útil se você quiser retornar algum script ou dados formatados em JSON.

Duas outras opções interessantes podem ser utilizadas para processar os resultados. Nós podemos especificar a opção onSuccess como uma função a ser chamada quando a chamada AJAX executa sem erros. Analogamente, a opção onFailure pode ser especificada como uma função a ser chamada quando um erro ocorrer durante a chamada. Tal como as funções onXXXXX, essas duas funções também serão chamadas com um argumento que conterá o objeto XMLHttpRequest que serviu de veículo para a chamada AJAX.

Nosso exemplo não fez nenhum processamento interessante da resposta XML. Nós apenas ecoamos o XML no textarea. Uma utilização mais típica da resposta iria provavelmente extrair a informação desejada de dentro do XML e atualizar alguns elementos da página, ou talvez mesmo utilizar uma transformação XSLT para criar HTML e inserir na página.

Na versão 1.4.0 da biblioteca uma nova forma de callback de evento foi introduzida. Se você possui código que deve sempre ser executado para um evento específico, não importando qual foi a chamada AJAX que causou o evento, então você pode utilizar o novo objeto Ajax.Responders.

Suponhamos que você necessita mostrar algum indicativo visível de que uma chamada AJAX está em curso; algo como um GIF animado ou coisa do gênero. Você pode usar duas funções de callback, uma para mostrar o GIF quando a primeira chamada se iniciar e outra para escondê-lo quando a última chamada for concluída. Veja o exemplo abaixo.

<script>
	var callbacksGlobais = {
		onCreate: function(){
			Element.show('chamadaEmCurso');
		},

		onComplete: function() {
			if(Ajax.activeRequestCount == 0){
				Element.hide('chamadaEmCurso');
			}
		}
	};

	Ajax.Responders.register(callbacksGlobais);
</script>

<div id='chamadaEmCurso'><img src='macaco_pulando.gif'>Carregando...</div>
	

Para maiores detalhes, dê uma olhada na referência do Ajax.Request e na referência das opções.

sumário

Utilizando a classe Ajax.Updater

Supondo que você tenha uma URL no seu servidor que possa retornar os dados já formatados em HTML, então a biblioteca facilita ainda mais sua vida com a classe Ajax.Updater. Com ela basta você informar qual o elemento que deve ser preenchido com o HTML que será retornado pela chamada AJAX. Um exemplo demonstra isso melhor do que eu conseguiria descrever.

<script>
	function buscaHTML()
	{
		var url = 'http://servidor/app/buscaHTML';
		var pars = 'algumParametro=ABC';
		
var myAjax = new Ajax.Updater( 'resposta_aqui', url, { method: 'get', parameters: pars });
} </script> <input type=button value="Busca HTML" onclick="buscaHTML()"> <div id="resposta_aqui"></div>

Como você pode ver, o código é muito semelhante ao exemplo anterior, excluindo-se a função onComplete e passando-se o id do elemento no construtor. Vamos alterar um pouco o código para ilustrar como é possível tratar erros produzidos no servidor em seu código no cliente.

Vamos incluir mais opções na chamada, especificando uma função para capturar situações de erro. Isso se faz com o auxílio da opção onFailure. Vamos também especificar que o elemento de id resposta_aqui apenas será preenchido se a operação for concluída com sucesso. Para que isso seja possível, vamos mudar o primeiro parametro de um simples id de elemento para um objeto. O construtor de Ajax.Updater aceita também como primeiro parâmetro um objeto com duas propriedades, success (a ser usado quando tudo termina bem) e failure (a ser usado quando um erro ocorre na chamada). No nosso caso não precisaremos da propriedade failure pois estaremos usando uma função nossa para tratar o erro. A função reportError tratará o erro conforme especificado na opção onFailure.

<script>
	function buscaHTML()
	{
		var url = 'http://servidor/app/buscaHTML';
		var pars = 'algumParametro=ABC';
		
var myAjax = new Ajax.Updater( {success: 'placeholder'}, url, { method: 'get', parameters: pars, onFailure: mostraErro });
} function mostraErro(request) { alert('Foi mal. Deu pau...'); } </script> <input type=button value="Busca HTML" onclick="buscaHTML()"> <div id="resposta_aqui"></div>

Um outro caso interessante é se seu servidor retorna código em JavaScript junto com o HTML. O objeto Ajax.Updater pode avaliar o código JavaScript. Para fazer o objeto tratar a resposta do servidor como JavaScript, basta que você use a opção evalScripts: true;. Mas há um porém. Os scripts (funções e variáveis declaradas) retornados não serão incluídos no escopo global da página, ou seja, não ficarão visíveis ao código já existente. Conforme o nome da opçãp evalScripts sugere, os scripts serão apenas avaliados. Qual a diferença!? Imagine que a resposta recebida seja a seguinte.

<script language="javascript" type="text/javascript">
	function faleAlgo(){
		alert('Olá');
	}
</script>

<input type=button value="Clique aqui" onclick="faleAlgo()">
			

Caso você já tenha tentado, você já sabe que isso não funciona. A razão é que esse bloco de script será apenas avaliado, e avaliá-lo (com eval() ) não criará uma função chamada faleAlgo. Nada de útil acontecerá com esse script. Para criar essa função nós precisamos mudar nosso script para que ele crie de fato a função. Veja o exemplo corrigido.

<script language="javascript" type="text/javascript">
	
faleAlgo = function(){ alert('Olá'); };
</script> <input type=button value="Clique aqui" onclick="faleAlgo()">

Perceba que no exemplo acima nós não empregamos a palavra-chave var para declarar a variável (função). Se fizéssemos isso a variável/função seria criada mas ficaria de acesso restrito ao escopo do próprio bloco de script (pelo menos no IE). Sem usar var a função será criada no escopo global, que é nosso objetivo.

Para mais detalhes sobre essa classe, veja e referência do Ajax.Updater e a referência das opções.

Enumerando... Uau! Putz! Oba!

Nós estamos acostumados com os laços do tipo for. Do tipo, crie seu array, preencha-o com elementos do mesmo tipo, crie uma estrutura de laço (for, foreach, while, repeat, etc), acesse cada elemento na seqüência, usando seu índice numérico, e faça algo útil com o elemento.

Se você parar pra pensar, quase todas as vezes que você usa um array em seu código significa que você estará utilizando aquele array em algum laço dentro em breve. Não seria legal se os objetod do tipo array tivessem mais suporte para trabalhar com esses tipos de iterações? Sim, seria, e muitas linguagens de programação possuem funcionalidade desse tipo em seus arrays ou estruturas equivalentes (tais como coleções, filas e listas).

Bem, acontece que a prototype.js nos dá o objeto Enumerable que implementa uma enormidade de truques para usarmos quando trabalhando com dados iteráveis. A biblioteca vai além e extende a classe Array com todos os métodos de Enumerable.

sumário

Laços a la Ruby

Em javascript padrão, se você quiser mostrar sequencialmente os elementos de um array, você pode tranqüilamente escrever algo assim.

<script>
	function mostraLisat(){
		var simpsons = ['Homer', 'Marge', 'Lisa', 'Bart', 'Meg'];
for(i=0;i<simpsons.length;i++){ alert(simpsons[i]); }
} </script> <input type="button" value="Mostrar Lista" onclick="mostraLista();" >

Com nosso novo melhor amigo, prototype.js, nós podemos reescrever esse laço assim.

	function mostraLista(){
		var simpsons = ['Homer', 'Marge', 'Lisa', 'Bart', 'Meg'];
simpsons.each( function(familyMember){ alert(familyMember); });
}

Você provavelmente está pensando "grande coisa... apenas uma sintaxe esquisita para a mesma coisa de sempre". Bem, no exemplo acima, sim, não tem nada de espetacular ocorrendo. Afinal não há muito o que ser mudado num exemplo tão simplório como esse. Mas siga lendo apesar de tudo.

Antes de prosseguirmos... Você viu essa função sendo passada como argumento do método each? Vamos começar a nos referir a ela como função iteradora.

sumário

Seus arrays bombados

Tal como mencionamos acima, é muito comum que todos os elementos de seu array sejam de um mesmo tipo, com as mesmas propriedades e métodos. Vejamos como podemos tirar proveito de funções iteradoras com nossos novos arrays envenenados.

Encontrando um elemento de acordo com um critério de busca.

<script>
	function encontreEmpregadoPorID(emp_id){
		var listBox = $('lstEmpregados')
		var opcoes = listBox.getElementsByTagName('option');
		opcoes = $A(opcoes);
		var opt = opcoes.find( function(empregado){
			return (empregado.value == emp_id);
		});
		alert(opt.innerHTML); //mostra o nome do empregado
	}
</script>

<select id="lstEmpregados" size="10" >
	<option value="5">Buchanan, Steven</option>
	<option value="8">Callahan, Laura</option>
	<option value="1">Davolio, Nancy</option>
</select>

<input type="button" value="Ache Laura" onclick="encontreEmpregadoPorID(8);" > 
			

Agora vamos ao próximo passo. Vamos ver como podemos filtrar items dos arrays e depois retornar apenas um membro de cada elemento.

<script>
	function mostreLinksLocais(paragrafo){
		paragrafo = $(paragrafo);
		var links = $A(paragrafo.getElementsByTagName('a'));
		//vamos achar os links que têm rel="local"
		var linksLocais = links.findAll( function(link){
			var rel = link.getAttribute("rel");
			return rel =='local';
		});
		//agora vamos extrair o texto de cada link
		var textos = linksLocais.pluck('innerHTML');
		//vamos colocar os textos em uma única string
		var resultado = textos.inspect();
		alert(resultado);
	}

</script>
<p id="algumTexto">
	Este <a href="http://othersite.com/page.html">texto</a> tem 
	<a rel"local" ref="#localAnchor">vários</a>  
	<a rel"local" href="#otherAnchor">links</a>. Alguns são 
	<a href="http://wherever.com/page.html">externos</a>
	e alguns são <a rel"local" href="#someAnchor">locais</a>
</p>
<input type=button value="Encontre Links Locais" onclick="mostreLinksLocais('algumTexto')">
			

Só é preciso um pouco de prática para ficar completamente viciado nessa sintaxe. Dê uma olhada nas referências de Enumerable e Array para ver uma lista de todas as funções disponíveis.

sumário

Livros que eu recomendo

Há livros que são tão bons que não dá pra deixar de recomendar. Os livros abaixo me ajudaram enormemente a aprender as novas técnicas necessárias para se construir uma aplicação AJAX e também consolidaram as técnicas que eu achava que já dominava. Eu acredito que um bom livro é um dinheiro bem gasto. É um investimento que se paga e continua a se pagar por um bom tempo.

sumário


Referência da prototype.js

Extensões das classes JavaScript

Uma das formas que prototype.js adiciona funcionalidade é extendendo as classes JavaScript existentes.

sumário

Extensões da classe Object

MétodoTipoArgumentosDescrição
extend(destination, source)estáticodestination: qualquer objeto, source: qualquer objeto Provém uma forma de se conseguir herança ao se copiar todas as propriedades e métodos de source para destination.
inspect(targetObj)estáticotargetObj: qualquer objeto Retorna uma string legível que representa targetObj. Caso o objeto passado não implemente um método inspect então a função retornará toString.

sumário

Extensões da classe Number

MétodoTipoArgumentosDescrição
toColorPart()de objeto(nenhum) Retorna a representação hexadecimal do número. Útil quando se quer converter valores RGB de uma cor para seu formato em HTML.
succ()de objeto(nenhum) Retorna o próximo número. Esse método é comumente utilizado em contextos que envolvem iterações.
times(iterator)de objetoiterator: uma função com assinatura equivalente a Function(valor, indice) Executa a função iterator repetidamente, passando os parâmetros valor e indice contendo o valor da vez na iteração e o índice da vez, respectivamente.

O exemplo a seguir mostrará mensagens com os números de 0 a 9.

<script>
	function usandoTimes(){
		var n = 10;
		n.times(function(valor, indice){
			alert(indice);
		});
		/***************************
		 * Tambem daria certo assim: 
		 *           (10).times( .... ); 
		 ***************************/
	}

</script>

<input type=button value="Testar Number.times()" onclick="usandoTimes()">
			

sumário

Extensões da classe Function

MétodoTipoArgumentosDescrição
bind(object)de objetoobject: o objeto ao qual o método pertence Retorna uma instância da função atrelada ao objeto que à contém. A nova função têm os mesmos argumentos que a original.
bindAsEventListener(object)de objetoobject: o objeto ao qual o método pertence Retorna uma instância da função atrelada ao objeto que à contém. A nova função terá o objeto event atual como argumento.

Vamos ver como se usam essas extensões.

<input type=checkbox id=myChk value=1> Test?
<script>
	//declarando a classe
	var CheckboxWatcher = Class.create();

	//definindo o resto da classe
	CheckboxWatcher.prototype = {

	   initialize: function(chkBox, mensagem) {
			this.chkBox = $(chkBox);
			this.mensagem = mensagem;
			//ligando nosso metodo ao evento
			
this.chkBox.onclick = this.mostraMensagem.bindAsEventListener(this);
}, mostraMensagem: function(evt) { alert(this.mensagem + ' (' + evt.type + ')'); } }; var watcher = new CheckboxWatcher('myChk', 'Mudou'); </script>

sumário

Extensões da classe String

MétodoTipoArgumentosDescrição
stripTags()de objeto(nenhum) Retorna a string subtraindo quaisquer tags HTML ou XML.
stripScripts()de objeto(nenhum) Retorna a string, subtraindo quaisquer blocos <script />.
escapeHTML()de objeto(nenhum) Retorna a string dando escape em quaisquer caracteres de marcação HTML.
unescapeHTML()de objeto(nenhum) A operação reversa de escapeHTML()
extractScripts()de objeto(nenhum) Retorna um objeto Array com mtodos os blocos <script /> encontrados na string.
evalScripts()de objeto(nenhum) Avalia todos os blocos <script /> encontrados na string.
toQueryParams()de objeto(nenhum) Separa a string em um array associativo indexado pelo nome de cada parametro (tal como um hash).
parseQuery()de objeto(nenhum) Mesmo que toQueryParams().
toArray()de objeto(nenhum) Retrorna um Array com cada caractere da string.
camelize()de objeto(nenhum) Converte um string-separada-por-hífens em uma stringFormatadaComCamelCase. Essa função pode ser útil quando se lida com propriedades de estilo, por exemplo.

sumário

Extensões da classe Array

De cara, a classe Array extende Enumerable, então todos aqueles métodos úteis de Enumerable estão disponíveis. Alem destes, os métodos a seguir também estão incluídos.

MétodoTipoArgumentosDescrição
clear()de objeto(nenhum) Esvazia o array e retorna-o.
first()de objeto(nenhum) Retorna o primeiro elemento do array.
last()de objeto(nenhum) Retorna o último elemento do array.
compact()de objeto(nenhum) Retorna o array sem os elementos que sejam null ou undefined. Este método não altera o array original, apenas retorna um novo.
flatten()de objeto(nenhum) Retorna uma versão unidimensional (achatada) do array. Esse achatamento ocorre porque cada elemento do array que também é um array terá seus elementos incluídos no array-pai. Esse processo ocorre de forma recursiva para cada elemento.
without(valor1 [, valor2 [, .. valorN]])de objeto valor1 ... valorN: valores a serem excluídos se encontrados no array. Retorna o array subtraindo os elementos listados como argumentos.
indexOf(valor)de objeto valor: o valor procurado. Retorna o índice, baseado em zero, do primeiro elemento encontrado com o valor. Retorna -1 se nenhuma ocorrência for encontrada.
reverse([alterarOriginal])de objeto alterarOriginal: indica se o array original será revertido. Retorna o array em ordem reversa. Se nenhum argumento for dado ou se o argumento for true então o array original também será revertido. Caso contrário ele permanecerá do jeito que está.
shift()de objeto(nenhum) Retorna o primeiro elemento do array e retira-o do array, reduzindo o tamanho do array em 1 elemento.
inspect()de objeto(nenhum) Retorna uma string com os elementos do array.

sumário

Extensões do objeto document do DOM

MétodoTipoArgumentosDescrição
getElementsByClassName(nomeDaClasse [, elementoPai])de objeto nomeDaClasse: nome da clase CSS associada com os elementos, elementoPai: objeto ou id do elemento que contém os elementos a serem buscados. Retorna todos os elementos com a classe CSS informada. Se o elemento-pai não for dado, então os elementos serão procurados dentro do elemento body.

sumário

Extensões do objeto Event

PropriedadeTipoDescrição
KEY_BACKSPACENumber 8: Constant. Code for the Backspace key.
KEY_TABNumber 9: Constant. Code for the Tab key.
KEY_RETURNNumber 13: Constant. Code for the Return key.
KEY_ESCNumber 27: Constant. Code for the Esc key.
KEY_LEFTNumber 37: Constant. Code for the Left arrow key.
KEY_UPNumber 38: Constant. Code for the Up arrow key.
KEY_RIGHTNumber 39: Constant. Code for the Right arrow key.
KEY_DOWNNumber 40: Constant. Code for the Down arrow key.
KEY_DELETENumber 46: Constant. Code for the Delete key.
observers:Array List of cached observers. Part of the internal implementation details of the object.

MétodoTipoArgumentosDescrição
element(event)estático event: an Event object Returns element that originated the event.
isLeftClick(event)estático event: an Event object Returns true if the left mouse button was clicked.
pointerX(event)estático event: an Event object Returns the x coordinate of the mouse pointer on the page.
pointerY(event)estático event: an Event object Returns the y coordinate of the mouse pointer on the page.
stop(event)estático event: an Event object Use this function to abort the default behavior of an event and to suspend its propagation.
findElement(event, tagName)estático event: an Event object, tagName: name of the desired tag. Traverses the DOM tree upwards, searching for the first element with the given tag name, starting from the element that originated the event.
observe(element, name, observer, useCapture)estático element: object or id, name: event name (like 'click', 'load', etc), observer: function to handle the event, useCapture: if true, handles the event in the capture phase and if false in the bubbling phase. Adds an event handler function to an event.
stopObserving(element, name, observer, useCapture)estático element: object or id, name: event name (like 'click'), observer: function that is handling the event, useCapture: if true handles the event in the capture phase and if false in the bubbling phase. Removes an event handler from the event.
_observeAndCache(element, name, observer, useCapture)estático   Private method, do not worry about it.
unloadCache()estático (nenhum) Private method, do not worry about it. Clears all cached observers from memory.

Let's see how to use this object to add an event handler to the load event of the window object.

<script>
	Event.observe(window, 'load', showMessage, false);

	function showMessage() {
	  alert('Page loaded.');
	}
</script>			
			

sumário

Novos objetos e classes definidos em prototype.js

Outra forma que a biblioteca ajuda é ao disponibilizar diversos objetos que implementam suporte a design orientado a objetos e também funcionalidades de uso geral.

sumário

The PeriodicalExecuter object

This object provides the logic for calling a given function repeatedly, at a given interval.

MétodoTipoArgumentosDescrição
[ctor](callback, interval)constructorcallback: a parameterless function, interval: number of seconds Creates one instance of this object that will call the function repeatedly.

PropriedadeTipoDescrição
callbackFunction()The function to be called. No parameters will be passed to it.
frequencyNumberThis is actually the interval in seconds
currentlyExecutingBooleanIndicates if the function call is in progress

sumário

The Prototype object

The Prototype object does not have any important role, other than declaring the version of the library being used.

PropriedadeTipoDescrição
VersionStringThe version of the library
emptyFunctionFunction()An empty function object

sumário

The Class object

The Class object is used when declaring the other classes in the library. Using this object when declaring a class causes the to new class to support an initialize() method, which serves as the constructor.

See the sample below.

//declaring the class
var MySampleClass = Class.create();

//defining the rest of the class implmentation
MySampleClass.prototype = {

   initialize: function(message) {
		this.message = message;
   },

   showMessage: function(ajaxResponse) {
      alert(this.message);
   }
};	

//now, let's instantiate and use one object
var myTalker = new MySampleClass('hi there.');
myTalker.showMessage(); //displays alert

			

MétodoTipoArgumentosDescrição
create(*)de objeto(any) Defines a constructor for a new class

The Ajax object

This object serves as the root for many other classes that provide AJAX functionality.

MétodoTipoArgumentosDescrição
getTransport()de objeto(nenhum) Returns a new XMLHttpRequest object

The Ajax.Base

This class is used as the base class for the other classes defined in the Ajax object.

MétodoTipoArgumentosDescrição
setOptions(options)de objetooptions: AJAX options Sets the desired options for the AJAX operation
responseIsSuccess()de objeto(nenhum) Returns true if the AJAX operation succeeded, false otherwise
responseIsFailure()de objeto(nenhum) The opposite of responseIsSuccess().

The Ajax.Request

Inherits from Ajax.Base

Encapsulates AJAX operations

PropriedadeTipoTipoDescrição
EventsArrayestático List of possible events/statuses reported during an AJAX operation. The list contains: 'Uninitialized', 'Loading', 'Loaded', 'Interactive', and 'Complete.'
transportXMLHttpRequestde objeto The XMLHttpRequest object that carries the AJAX operation

MétodoTipoArgumentosDescrição
[ctor](url, options)constructorurl: the url to be fetched, options: AJAX options Creates one instance of this object that will call the given url using the given options. Important: It is worth noting that the chosen url is subject to the borwser's security settings. In many cases the browser will not fetch the url if it is not from the same host (domain) as the current page. You should ideally use only local urls to avoid having to configure or restrict the user's browser. (Thanks Clay).
request(url)de objetourl: url for the AJAX call This method is typically not called externally. It is already called during the constructor call.
setRequestHeaders()de objeto(nenhum) This method is typically not called externally. It is called by the object itself to assemble the HTTP header that will be sent during the HTTP request.
onStateChange()de objeto(nenhum) This method is typically not called externally. It is called by the object itself when the AJAX call status changes.
respondToReadyState(readyState)de objetoreadyState: state number (1 to 4) This method is typically not called externally. It is called by the object itself when the AJAX call status changes.

The options argument object

An important part of the AJAX operations is the options argument. There's no options class per se. Any object can be passed, as long as it has the expected properties. It is common to create anonymous objects just for the AJAX calls.

PropriedadeTipoDefaultDescrição
methodString'post' Method of the HTTP request
parametersString'' The url-formatted list of values passed to the request
asynchronousBooleantrue Indicates if the AJAX call will be made asynchronously
postBodyStringundefined Content passed to in the request's body in case of a HTTP POST
requestHeadersArrayundefined List of HTTP headers to be passed with the request. This list must have an even number of items, any odd item is the name of a custom header, and the following even item is the string value of that header. Example:['my-header1', 'this is the value', 'my-other-header', 'another value']
onXXXXXXXXFunction(XMLHttpRequest)undefined Custom function to be called when the respective event/status is reached during the AJAX call. Example var myOpts = {onComplete: showResponse, onLoaded: registerLoaded};. The function used will receive one argument, containing the XMLHttpRequest object that is carrying the AJAX operation.
onSuccessFunction(XMLHttpRequest)undefined Custom function to be called when the AJAX call completes successfully. The function used will receive one argument, containing the XMLHttpRequest object that is carrying the AJAX operation.
onFailureFunction(XMLHttpRequest)undefined Custom function to be called when the AJAX call completes with error. The function used will receive one argument, containing the XMLHttpRequest object that is carrying the AJAX operation.
insertionFunction(Object, String)null Function to be called to inject the returned text into an element. The function will be called with two arguments, the element object to be updated and the response text Applies only to Ajax.Updater objects.
evalScriptsBooleanundefined, false Determines if script blocks will be evaluated when the response arrives. Applies only to Ajax.Updater objects.
decayNumberundefined, 1 Determines the progressive slowdown in a Ajax.PeriodicalUpdater object refresh rate when the received response is the same as the last one. For example, if you use 2, after one of the refreshes produces the same result as the previous one, the object will wait twice as much time for the next refresh. If it repeats again, the object will wait four times as much, and so on. Leave it undefined or use 1 to avoid the slowdown.

The Ajax.Updater

Inherits from Ajax.Request

Used when the requested url returns HTML that you want to inject directly in a specific element of your page. You can also use this object when the url returns <script> blocks that will be evaluated upon arrival. Use the evalScripts option to work with scripts.

PropriedadeTipoTipoDescrição
ScriptFragmentStringestático A regular expression to identify scripts
containersObjectde objeto This object contains two properties: containers.success will be used when the AJAX call succeeds, and containers.failure will be used otherwise.

MétodoTipoArgumentosDescrição
[ctor](container, url, options)constructor container:this can be the id of an element, the element object itself, or an object with two properties - object.success element (or id) that will be used when the AJAX call succeeds, and object.failure element (or id) that will be used otherwise. url: the url to be fetched, options: AJAX options Creates one instance of this object that will call the given url using the given options.
updateContent()de objeto(nenhum) This method is typically not called externally. It is called by the object itself when the response is received. It will update the appropriate element with the HTML or call the function passed in the insertion option. The function will be called with two arguments, the element to be updated and the response text.

The Ajax.PeriodicalUpdater

Inherits from Ajax.Base

This class repeatedly instantiates and uses an Ajax.Updater object to refresh an element on the page, or to perform any of the other tasks the Ajax.Updater can perform. Check the Ajax.Updater reference for more information.

PropriedadeTipoTipoDescrição
containerObjectde objeto This value will be passed straight to the Ajax.Updater's constructor.
urlStringde objeto This value will be passed straight to the Ajax.Updater's constructor.
frequencyNumberde objeto Interval (not frequency) between refreshes, in seconds. Defaults to 2 seconds. This number will be multiplied by the current decay when invoking theAjax.Updater object
decayNumberde objeto Keeps the current decay level applied when re-executing the task
updaterAjax.Updaterde objeto The most recently used Ajax.Updater object
timerObjectde objeto The JavaScript timer being used to notify the object when it is time for the next refresh.

MétodoTipoArgumentosDescrição
[ctor](container, url, options)constructor container:this can be the id of an element, the element object itself, or an object with two properties - object.success element (or id) that will be used when the AJAX call succeeds, and object.failure element (or id) that will be used otherwise. url: the url to be fetched, options: AJAX options Creates one instance of this object that will call the given url using the given options.
start()de objeto(nenhum) This method is typically not called externally. It is called by the object itself to start performing its periodical tasks.
stop()de objeto(nenhum) This method is typically not called externally. It is called by the object itself to stop performing its periodical tasks.
updateComplete()de objeto(nenhum) This method is typically not called externally. It is called by the currently used Ajax.Updater after if completes the request. It is used to schedule the next refresh.
onTimerEvent()de objeto(nenhum) This method is typically not called externally. It is called internally when it is time for the next update.

The Element object

This object provides some utility functions for manipulating elements in the DOM.

MétodoTipoArgumentosDescrição
toggle(elem1 [, elem2 [, elem3 [...]]])de objetoelemN: element object or id Toggles the visibility of each passed element.
hide(elem1 [, elem2 [, elem3 [...]]])de objetoelemN: element object or id Hides each element bu setting its style.display to 'none'.
show(elem1 [, elem2 [, elem3 [...]]])de objetoelemN: element object or id Shows each element bu resetting its style.display to ''.
remove(element)de objetoelement: element object or id Removes the element from the document.
getHeight(element)de objetoelement: element object or id Returns the offsetHeight of the element
addClassName(element, className)de objetoelement: element object or id, className: name of a CSS class Adds the given class name to the element's class names.
hasClassName(element, className)de objetoelement: element object or id, className: name of a CSS class Returns true if the element has the given class name as one of its class names.
removeClassName(element, className)de objetoelement: element object or id, className: name of a CSS class Removes the given class name from the element's class names.
cleanWhitespace(element)de objetoelement: element object or id Removes any white space text node children of the element

The Abstract object

This object serves as the root for other classes in the library. It does not have any properties or methods. The classes defined in this object are also treated as traditional abstract classes.

The Abstract.Insertion

This class is used as the base class for the other classes that will provide dynamic content insertion. This class is used like an abstract class.

MétodoTipoArgumentosDescrição
[ctor](element, content)constructor element: element object or id, content: HTML to be inserted Creates an object that will help with dynamic content insertion.

PropriedadeTipoTipoDescrição
adjacencyStringstatic, parameter Parameter that specifies where the content will be placed relative to the given element. The possible values are: 'beforeBegin', 'afterBegin', 'beforeEnd', and 'afterEnd'.
elementObjectde objeto The element object that the insertion will be made relative to.
contentStringde objeto The HTML that will be inserted.

The Insertion object

This object serves as the root for other classes in the library. It does not have any properties or methods. The classes defined in this object are also treated as traditional abstract classes.

The Insertion.Before

Inherits from Abstract.Insertion

Inserts HTML before an element.

MétodoTipoArgumentosDescrição
[ctor](element, content)constructor element: element object or id, content: HTML to be inserted Inherited from Abstract.Insertion. Creates an object that will help with dynamic content insertion.

The following code

<br>Hello, <span id="person" style="color:red;">Wiggum. How's it going?</span>

<script> new Insertion.Before('person', 'Chief '); </script>
			

Will change the HTML to

<br>Hello, Chief <span id="person" style="color:red;">Wiggum. How's it going?</span>	
			

The Insertion.Top

Inherits from Abstract.Insertion

Inserts HTML as the first child under an element. The content will be right after the opening tag of the element.

MétodoTipoArgumentosDescrição
[ctor](element, content)constructor element: element object or id, content: HTML to be inserted Inherited from Abstract.Insertion. Creates an object that will help with dynamic content insertion.

The following code

<br>Hello, <span id="person" style="color:red;">Wiggum. How's it going?</span>

<script> new Insertion.Top('person', 'Mr. '); </script>
			

Will change the HTML to

<br>Hello, <span id="person" style="color:red;">Mr. Wiggum. How's it going?</span>	
			

The Insertion.Bottom

Inherits from Abstract.Insertion

Inserts HTML as the last child under an element. The content will be right before the element's closing tag.

MétodoTipoArgumentosDescrição
[ctor](element, content)constructor element: element object or id, content: HTML to be inserted Inherited from Abstract.Insertion. Creates an object that will help with dynamic content insertion.

The following code

<br>Hello, <span id="person" style="color:red;">Wiggum. How's it going?</span>

<script> new Insertion.Bottom('person', " What's up?"); </script>
			

Will change the HTML to

<br>Hello, <span id="person" style="color:red;">Wiggum. How's it going? What's up?</span>	
			

The Insertion.After

Inherits from Abstract.Insertion

Inserts HTML right after the element's closing tag.

MétodoTipoArgumentosDescrição
[ctor](element, content)constructor element: element object or id, content: HTML to be inserted Inherited from Abstract.Insertion. Creates an object that will help with dynamic content insertion.

The following code

<br>Hello, <span id="person" style="color:red;">Wiggum. How's it going?</span>

<script> new Insertion.After('person', ' Are you there?'); </script>
			

Will change the HTML to

<br>Hello, <span id="person" style="color:red;">Wiggum. How's it going?</span> Are you there?	
			

The Field object

This object provides some utility functions for working with input fields in forms.

MétodoTipoArgumentosDescrição
clear(field1 [, field2 [, field3 [...]]])de objetofieldN: field element object or id Clears the value of each passed form field element.
present(field1 [, field2 [, field3 [...]]])de objetofieldN: field element object or id Returns true only if all forms fields contain non-empty values.
focus(field)de objetofield: field element object or id Moves the input focus to the given form field.
select(field)de objetofield: field element object or id Selects the value in fields that support text selection
activate(field)de objetofield: field element object or id Move the focus and selects the value in fields that support text selection

The Form object

This object provides some utility functions for working with data entry forms and their input fields.

MétodoTipoArgumentosDescrição
serialize(form)de objetoform: form element object or id Returns a url-formatted list of field names and their values, like 'field1=value1&field2=value2&field3=value3'
getElements(form)de objetoform: form element object or id Returns an Array containing all the input fields in the form.
getInputs(form [, typeName [, name]])de objeto form: form element object or id, typeName: the type of the input element, name: the name of the input element. Returns an Array containing all the <input> elements in the form. Optionally, the list can be filtered by the type or name attributes of the elements.
disable(form)de objetoform: form element object or id Disables all the input fields in the form.
enable(form)de objetoform: form element object or id Enables all the input fields in the form.
focusFirstElement(form)de objetoform: form element object or id Activates the first visible, enabled input field in the form.
reset(form)de objetoform: form element object or id Resets the form. The same as calling the reset() method of the form object.

The Form.Element object

This object provides some utility functions for working with form elements, visible or not.

MétodoTipoArgumentosDescrição
serialize(element)de objetoelement: element object or id Returns the element's name=value pair, like 'elementName=elementValue'
getValue(element)de objetoelement: element object or id Returns the value of the element.

The Form.Element.Serializers object

This object provides some utility functions that are used internally in the library to assist extracting the current value of the form elements.

MétodoTipoArgumentosDescrição
inputSelector(element)de objetoelement: object or id of a form element that has the checked property, like a radio button or checkbox. Returns an Array with the element's name and value, like ['elementName', 'elementValue']
textarea(element)de objetoelement: object or id of a form element that has the value property, like a textbox, button or password field. Returns an Array with the element's name and value, like ['elementName', 'elementValue']
select(element)de objetoelement: object or id of a <select> element Returns an Array with the element's name and all selected options' values or texts, like ['elementName', 'selOpt1 selOpt4 selOpt9']

The Abstract.TimedObserver

This class is used as the base class for the other classes that will monitor one element until its value (or whatever property the derived class defines) changes. This class is used like an abstract class.

Subclasses can be created to monitor things like the input value of an element, or one of the style properties, or number of rows in a table, or whatever else you may be interested in tracking changes to.

MétodoTipoArgumentosDescrição
[ctor](element, frequency, callback)constructor element: element object or id, frequency: interval in seconds, callback: function to be called when the element changes Creates an object that will monitor the element.
getValue()instance, abstract (nenhum) Derived classes have to implement this method to determine what is the current value being monitored in the element.
registerCallback()de objeto(nenhum) This method is typically not called externally. It is called by the object itself to start monitoring the element.
onTimerEvent()de objeto(nenhum) This method is typically not called externally. It is called by the object itself periodically to check the element.

PropriedadeTipoDescrição
elementObject The element object that is being monitored.
frequencyNumberThis is actually the interval in seconds between checks.
callbackFunction(Object, String)The function to be called whenever the element changes. It will receive the element object and the new value.
lastValueStringThe last value verified in the element.

The Form.Element.Observer

Inherits from Abstract.TimedObserver

Implementation of an Abstract.TimedObserver that monitors the value of form input elements. Use this class when you want to monitor an element that does not expose an event that reports the value changes. In that case you can use the Form.Element.EventObserver class instead.

MétodoTipoArgumentosDescrição
[ctor](element, frequency, callback)constructor element: element object or id, frequency: interval in seconds, callback: function to be called when the element changes Inherited from Abstract.TimedObserver. Creates an object that will monitor the element's value property.
getValue()de objeto (nenhum) Returns the element's value.

The Form.Observer

Inherits from Abstract.TimedObserver

Implementation of an Abstract.TimedObserver that monitors any changes to any data entry element's value in a form. Use this class when you want to monitor a form that contais a elements that do not expose an event that reports the value changes. In that case you can use the Form.EventObserver class instead.

MétodoTipoArgumentosDescrição
[ctor](form, frequency, callback)constructor form: form object or id, frequency: interval in seconds, callback: function to be called when any data entry element in the form changes Inherited from Abstract.TimedObserver. Creates an object that will monitor the form for changes.
getValue()de objeto (nenhum) Returns the serialization of all form's data.

The Abstract.EventObserver

This class is used as the base class for the other classes that execute a callback: function whenever a value-changing event happens for an element.

Multiple objects of type Abstract.EventObserver can be bound to the same element, without one wiping out the other. The callbacks will be executed in the order they are assigned to the element.

The triggering event is onclick for radio buttons and checkboxes, and onchange for textboxes in general and listboxes/dropdowns.

MétodoTipoArgumentosDescrição
[ctor](element, callback)constructor element: element object or id, callback: function to be called when the event happens Creates an object that will monitor the element.
getValue()instance, abstract (nenhum) Derived classes have to implement this method to determine what is the current value being monitored in the element.
registerCallback()de objeto(nenhum) This method is typically not called externally. It is called by the object to bind itself to the element's event.
registerFormCallbacks()de objeto(nenhum) This method is typically not called externally. It is called by the object to bind itself to the events of each data entry element in the form.
onElementEvent()de objeto(nenhum) This method is typically not called externally. It will be bound to the element's event.

PropriedadeTipoDescrição
elementObject The element object that is being monitored.
callbackFunction(Object, String)The function to be called whenever the element changes. It will receive the element object and the new value.
lastValueStringThe last value verified in the element.

The Form.Element.EventObserver

Inherits from Abstract.EventObserver

Implementation of an Abstract.EventObserver that executes a callback function to the appropriate event of the form data entry element to detect value changes in the element. If the element does not expose any event that reports changes, then you can use the Form.Element.Observer class instead.

MétodoTipoArgumentosDescrição
[ctor](element, callback)constructor element: element object or id, callback: function to be called when the event happens Inherited from Abstract.EventObserver. Creates an object that will monitor the element's value property.
getValue()de objeto (nenhum) Returns the element's value

The Form.EventObserver

Inherits from Abstract.EventObserver

Implementation of an Abstract.EventObserver that monitors any changes to any data entry element contained in a form, using the elements' events to detect when the value changes. If the form contains elements that do not expose any event that reports changes, then you can use the Form.Observer class instead.

MétodoTipoArgumentosDescrição
[ctor](form, callback)constructor form: form object or id, callback: function to be called when any data entry element in the form changes Inherited from Abstract.EventObserver. Creates an object that will monitor the form for changes.
getValue()de objeto (nenhum) Returns the serialization of all form's data.

The Position object (preliminary documentation)

This object provides a host of functions that help when working with element positioning.

MétodoTipoArgumentosDescrição
prepare()de objeto(nenhum) Adjusts the deltaX and deltaY properties to accomodate changes in the scroll position. Remember to call this method before any calls to withinIncludingScrolloffset after the page scrolls.
realOffset(element)de objetoelement: object Returns an Array with the correct scroll offsets of the element, including any scroll offsets that affect the element. The resulting array is similar to [total_scroll_left, total_scroll_top]
cumulativeOffset(element)de objetoelement: object Returns an Array with the correct positioning offsets of the element, including any offsets that are imposed by positioned parent elements. The resulting array is similar to [total_offset_left, total_offset_top]
within(element, x, y)de objetoelement: object, x and y: coordinates of a point Tests if the given point coordinates are inside the bounding rectangle of the given element
withinIncludingScrolloffsets(element, x, y)de objetoelement: object, x and y: coordinates of a point  
overlap(mode, element)de objetomode: 'vertical' or 'horizontal', element: object within() needs to be called right before calling this method. This method will return a decimal number between 0.0 and 1.0 representing the fraction of the coordinate that overlaps on the element. As an example, if the element is a square DIV with a 100px side and positioned at (300, 300), then within(divSquare, 330, 330); overlap('vertical', divSquare); should return 0.10, meaning that the point is at the 10% (30px) mark from the top border of the DIV.
clone(source, target)de objetosource: element object or id, target: element object or id Resizes and repositions the target element identically to the source element.


Se você encontrar erros, informação errada ou incompleta, ou pura e simples tolices, por favor e eu tentarei corrigir o quanto antes.