[JBoss Portal] - portal-layouts.xml
by saigon_man
Hello,
I am using JBoss Portal 2.6.1 and have a question about the layout descriptor
I want to create one column layout for a page. So, I create a theme, modified the portal-layout.xml, and specified that theme for the page in myportal-object.xml. When I deployed the war file, nothing happedn until I go inside the admin portal and change the layout of that page from there. Same thing happens with the order of page. So, my question is, does Jboss portal overwrite the default data in the default portal (which is what I am using right now) to whatever specify in the portal-layouts.xml and *-object.xml in a particular war file? If not, how do I do this? I like to specify everything within the xml files in my war file and without going into the admin to change the setting for each page or the whole portal.
Your help is appreciated
Thanks,
TL
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075343#4075343
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075343
18Â years, 10Â months
[EJB/JBoss] - Re: which class is used ? Classloader ?
by marcelvanvelzen
Can it have something to do with the parameter java2ParentDelegation ?
To state my problem again, in each deployed .ejb3 file some normal classes have the same name.
Each .ejb3 is generated specific and deployed to some criteria of a customer.
Future insight might be the cause of changing the logic of one or more normal classes and new deployment must contain the new logic, which previous deployed .ejb3 should execute the old logic.
I noticed during execution of such a normal class, this was not the class within that specific .ejb3 file, but from another deployed file.
I want isolation of classes used in that specific ejb3, while still be able to share 2 additional jar files in the default/deploy directory.
How can I accomplish this ?
Any help would be very much appreciated !
Thanks in advance,
Marcel
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075331#4075331
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075331
18Â years, 10Â months
[JBoss Seam] - Re: Ajax4JSF and s:selectItems
by smithbstl
agreed, all you should be rerendering is "dothis"
Here is an example that I know works from my app
<h:selectOneMenu id="departmentCode_select" value="#{departmentCode}">
| <s:selectItems label="#{deptCode.department.departmentNumber} - #{deptCode.department.departmentName}"
| value="#{departmentCodeList}"
| noSelectionLabel="(None)" var="deptCode"/>
| <s:convertEntity/>
| <a4j:support event="onchange"
| actionListener="#{serviceRequestManager.fillDepartmentSectionList}"
| ajaxSingle="true" reRender="departmentSection_select"/>
| </h:selectOneMenu>
| <h:outputLabel for="departmentSection_select" value="#{messages['AssignmentList.departmentSection']}"/>
| <h:selectOneMenu id="departmentSection_select" value="#{departmentSection}">
| <s:selectItems label="#{deptSection.departmentSectionName}"
| value="#{departmentSectionList}"
| noSelectionLabel="(None)" var="deptSection"/>
| <s:convertEntity/>
| </h:selectOneMenu>
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075329#4075329
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075329
18Â years, 10Â months