掲示板

Javascript in Liferay Portal

thumbnail
11年前 に Égon Lima によって更新されました。

Javascript in Liferay Portal

Junior Member 投稿: 25 参加年月日: 12/04/23 最新の投稿
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
11年前 に David H Nebinger によって更新されました。

RE: Javascript in Liferay Portal

Liferay Legend 投稿: 14914 参加年月日: 06/09/02 最新の投稿
The alloy libs are already available, you do not have to import them again. Just use them as if they were imported.
thumbnail
11年前 に Hitoshi Ozawa によって更新されました。

RE: Javascript in Liferay Portal

Liferay Legend 投稿: 7942 参加年月日: 10/03/24 最新の投稿
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
11年前 に Égon Lima によって更新されました。

RE: Javascript in Liferay Portal

Junior Member 投稿: 25 参加年月日: 12/04/23 最新の投稿
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
11年前 に Hitoshi Ozawa によって更新されました。

RE: Javascript in Liferay Portal

Liferay Legend 投稿: 7942 参加年月日: 10/03/24 最新の投稿
You have to remember that there is actually only 1 html page. Portal just combines generated html scriptlets representing portlets.
thumbnail
11年前 に Égon Lima によって更新されました。

RE: Javascript in Liferay Portal

Junior Member 投稿: 25 参加年月日: 12/04/23 最新の投稿
Is there any way to add more javascript libraries to the portal. As if we were complementing AlloyUi
thumbnail
11年前 に David H Nebinger によって更新されました。

RE: Javascript in Liferay Portal

Liferay Legend 投稿: 14914 参加年月日: 06/09/02 最新の投稿
Sure, again using the theme. That's how I pull in jquery and some other libs.
thumbnail
11年前 に Égon Lima によって更新されました。

RE: Javascript in Liferay Portal

Junior Member 投稿: 25 参加年月日: 12/04/23 最新の投稿
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
11年前 に Égon Lima によって更新されました。

RE: Javascript in Liferay Portal

Junior Member 投稿: 25 参加年月日: 12/04/23 最新の投稿
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
11年前 に raja gopal によって更新されました。

RE: Javascript in Liferay Portal

New Member 投稿: 1 参加年月日: 12/07/23 最新の投稿
hi

please tell me the steps need to do for Highcharts working in liferay.
thumbnail
11年前 に David H Nebinger によって更新されました。

RE: Javascript in Liferay Portal

Liferay Legend 投稿: 14914 参加年月日: 06/09/02 最新の投稿
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...
10年前 に Jason Dobyns によって更新されました。

RE: Javascript in Liferay Portal

Junior Member 投稿: 36 参加年月日: 13/07/31 最新の投稿
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
10年前 に David H Nebinger によって更新されました。

RE: Javascript in Liferay Portal

Liferay Legend 投稿: 14914 参加年月日: 06/09/02 最新の投稿
When using jquery, you must drop all $() syntax and use the regular jquery() syntax instead.
10年前 に Jason Dobyns によって更新されました。

RE: Javascript in Liferay Portal

Junior Member 投稿: 36 参加年月日: 13/07/31 最新の投稿
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
10年前 に David H Nebinger によって更新されました。

RE: Javascript in Liferay Portal

Liferay Legend 投稿: 14914 参加年月日: 06/09/02 最新の投稿
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.
10年前 に Jason Dobyns によって更新されました。

RE: Javascript in Liferay Portal

Junior Member 投稿: 36 参加年月日: 13/07/31 最新の投稿
Also, still not get more lucky. It's difficult to understand the reason, i have never got this problem, don't know why.