is there any way in Liferay 6.2 to load all css (or js) files contained in a folder?
This is liferay-portlet.xml example file:
<portlet>
<portlet-name>Example</portlet-name>
<icon>/icon.png</icon>
<instanceable>true</instanceable>
<header-portlet-css>/css/main.css</header-portlet-css>
<footer-portlet-javascript>/js/main.js</footer-portlet-javascript>
<css-class-wrapper>example-portlet</css-class-wrapper>
</portlet>
Can I write something like that (to load all css in myCss folder and all js in myJs folder)?
<header-portlet-css>/myCss/*.css</header-portlet-css>
<footer-portlet-javascript>/myJs/*.js</footer-portlet-javascript>
Thanks