Dan Hoang

Greenhorn
+ Follow
since Oct 29, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Dan Hoang

Hello,

I am new to JSF, and spent serveral days on an issue with it. I am working on a JSF page which uses a template. This template already have CSS rules defined. Now I want to add new rules for my new page (particularly, some classes to use with columnClasses attrib of a dataTable), but I dont have control of the template and its asscociated CSS file, because it is from a jar library.
Could you show me how to work around this?

My new JSF has this:
<ui:composition template="../../templates/standard.xhtml">
<ui:define name="title">Users Maint</ui:define>

<ui:define name="main">
<<main content goes here>>
</ui:define>

</ui:composition>

Part of standard.xhmtl:
<head>
<title>System Administration</title>
<link rel="stylesheet" type="text/css"
href="#{facesContext.externalContext.requestContextPath}/css/standard.css" />
</head>

<body">
...
<rich:panel styleClass="display-view">
<ui:insert name="main" />
</rich:panel>
...

Any help would be very appreciated.
-dan
15 years ago
JSF