Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
36 righe
579 B
36 righe
579 B
5 anni fa
|
AUI().ready(
|
||
|
/*
|
||
|
This function gets loaded when all the HTML, not including the portlets, is
|
||
|
loaded.
|
||
|
*/
|
||
|
|
||
|
function () {
|
||
|
|
||
|
}
|
||
|
);
|
||
|
|
||
|
Liferay.Portlet.ready(
|
||
|
/*
|
||
|
This function gets loaded after each and every portlet on the page.
|
||
|
|
||
|
portletId: the current portlet's id
|
||
|
node: the Alloy Node object of the current portlet
|
||
|
*/
|
||
|
|
||
|
function (portletId, node) {
|
||
|
|
||
|
}
|
||
|
);
|
||
|
|
||
|
Liferay.on(
|
||
|
'allPortletsReady',
|
||
|
|
||
|
/*
|
||
|
This function gets loaded when everything, including the portlets, is on
|
||
|
the page.
|
||
|
*/
|
||
|
|
||
|
function () {
|
||
|
|
||
|
}
|
||
|
);
|