Foros de discusión

Javascript in Liferay Portal

thumbnail
Égon Lima, modificado hace 12 años.

Javascript in Liferay Portal

Junior Member Mensajes: 25 Fecha de incorporación: 23/04/12 Mensajes recientes
Hello people

Does anyone know how to import a javascript library to incorporate the structure of a Liferay Portal. I'm developing some portlets and am having trouble because my libraries conflict with giving estam alloy yui libraries already existing in Liferay
thumbnail
David H Nebinger, modificado hace 12 años.

RE: Javascript in Liferay Portal

Liferay Legend Mensajes: 14919 Fecha de incorporación: 2/09/06 Mensajes recientes
The alloy libs are already available, you do not have to import them again. Just use them as if they were imported.
thumbnail
Hitoshi Ozawa, modificado hace 12 años.

RE: Javascript in Liferay Portal

Liferay Legend Mensajes: 7942 Fecha de incorporación: 24/03/10 Mensajes recientes
I think your question is not about loading javascript into your portlet but about avoiding conflict with existing AlloyUI.
Which library are you using? Try changing your library to avoid conflict is all I can say from the current description of your problem.
thumbnail
Égon Lima, modificado hace 12 años.

RE: Javascript in Liferay Portal

Junior Member Mensajes: 25 Fecha de incorporación: 23/04/12 Mensajes recientes
I am using a graphics library called Highcharts, which is very good by the way, but the problem is the conflict it generates portal page, disabling multiple functions of the original page.
Note I'm newbie in the development of portals and portlets.
But again I ask, anyone know any way to avoid conflict between the JavaScript libraries inside Liferay Portal Server.
thumbnail
Hitoshi Ozawa, modificado hace 12 años.

RE: Javascript in Liferay Portal

Liferay Legend Mensajes: 7942 Fecha de incorporación: 24/03/10 Mensajes recientes
You have to remember that there is actually only 1 html page. Portal just combines generated html scriptlets representing portlets.
thumbnail
Égon Lima, modificado hace 12 años.

RE: Javascript in Liferay Portal

Junior Member Mensajes: 25 Fecha de incorporación: 23/04/12 Mensajes recientes
Is there any way to add more javascript libraries to the portal. As if we were complementing AlloyUi
thumbnail
David H Nebinger, modificado hace 12 años.

RE: Javascript in Liferay Portal

Liferay Legend Mensajes: 14919 Fecha de incorporación: 2/09/06 Mensajes recientes
Sure, again using the theme. That's how I pull in jquery and some other libs.
thumbnail
Égon Lima, modificado hace 11 años.

RE: Javascript in Liferay Portal

Junior Member Mensajes: 25 Fecha de incorporación: 23/04/12 Mensajes recientes
Thank you,
But I think my problem is in Portal because I find it strange what is happening. For you to understand better my problem my Liferay Portal is not displaying the right of the portal page JavaScript code, not the Portlets that I created. The funny thing is that Google Chrome in the portal works perfectly.
I'm working on that error plus or minus one week and I'm tired because I can not find. It takes me to believe now that must have been some error in Liferay Portal, try the installation again.
If anyone ever had a similar experience, please comment!
Gracias emoticon
thumbnail
Égon Lima, modificado hace 11 años.

RE: Javascript in Liferay Portal

Junior Member Mensajes: 25 Fecha de incorporación: 23/04/12 Mensajes recientes
Personal solved the problem
Deploy the javascript on the theme of the portal so that now use it freely without any conflict within the portal page with portlets

Thank you
raja gopal, modificado hace 11 años.

RE: Javascript in Liferay Portal

New Member Mensaje: 1 Fecha de incorporación: 23/07/12 Mensajes recientes
hi

please tell me the steps need to do for Highcharts working in liferay.
thumbnail
David H Nebinger, modificado hace 12 años.

RE: Javascript in Liferay Portal

Liferay Legend Mensajes: 14919 Fecha de incorporación: 2/09/06 Mensajes recientes
I use highcharts too. Created a theme to pull the script in automagically in the page footer.

Portlets using charts just use it, they don't have to have anything in the liferay-portlet.xml file indicating they need it, don't have to deploy it with the portlets, and upgrading is easy because I just have to do it in the theme.

I don't have any conflicts, so I'm guessing that it's actually something you're doing which is causing the conflict...
Jason Dobyns, modificado hace 10 años.

RE: Javascript in Liferay Portal

Junior Member Mensajes: 36 Fecha de incorporación: 31/07/13 Mensajes recientes
I have add this snipset into .../html/theme/classic/template/portal_normal.vm file
"<script type="text/javascript" src="$javascript_folder/highcharts.js"></script>"
But then i call:
$('#container').highcharts({
chart: {
type: 'bar'
},
title: {
text: 'Historic World Population by Region'
},
subtitle: {
text: 'Source: Wikipedia.org'
},
xAxis: {
categories: ['Africa', 'America', 'Asia', 'Europe', 'Oceania'],
title: {
text: null
}
},
yAxis: {
min: 0,
title: {
text: 'Population (millions)',
align: 'high'
},
labels: {
overflow: 'justify'
}
},
tooltip: {
valueSuffix: ' millions'
},
plotOptions: {
bar: {
dataLabels: {
enabled: true
}
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'top',
x: -40,
y: 100,
floating: true,
borderWidth: 1,
backgroundColor: '#FFFFFF',
shadow: true
},
credits: {
enabled: false
},
series: [{
name: 'Year 1800',
data: [107, 31, 635, 203, 2]
}, {
name: 'Year 1900',
data: [133, 156, 947, 408, 6]
}, {
name: 'Year 2008',
data: [973, 914, 4054, 732, 34]
}]
});
It said "highcharts is not a function" althought i see page loaded highcharts.js file
thumbnail
David H Nebinger, modificado hace 10 años.

RE: Javascript in Liferay Portal

Liferay Legend Mensajes: 14919 Fecha de incorporación: 2/09/06 Mensajes recientes
When using jquery, you must drop all $() syntax and use the regular jquery() syntax instead.
Jason Dobyns, modificado hace 10 años.

RE: Javascript in Liferay Portal

Junior Member Mensajes: 36 Fecha de incorporación: 31/07/13 Mensajes recientes
David H Nebinger:
When using jquery, you must drop all $() syntax and use the regular jquery() syntax instead.

Because liferay using too old version of jquery?
thumbnail
David H Nebinger, modificado hace 10 años.

RE: Javascript in Liferay Portal

Liferay Legend Mensajes: 14919 Fecha de incorporación: 2/09/06 Mensajes recientes
Jason Dobyns:
David H Nebinger:
When using jquery, you must drop all $() syntax and use the regular jquery() syntax instead.

Because liferay using too old version of jquery?


No, because AUI also uses $() syntax.
Jason Dobyns, modificado hace 10 años.

RE: Javascript in Liferay Portal

Junior Member Mensajes: 36 Fecha de incorporación: 31/07/13 Mensajes recientes
Also, still not get more lucky. It's difficult to understand the reason, i have never got this problem, don't know why.