brummeline kebratn

Greenhorn
+ Follow
since Feb 21, 2007
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 brummeline kebratn

I don't know how, but in some way I've got both jsf verions, Sun and MyFaces, in my classpath. I'm working on a project where I need the tomahawk dataTable newspaperColumns function. Because of that I needed to use the myfaces implementation of jsf. I removed the other librarys, but it seems like something has not been deleted.
I get the message that



And when I try to open the page where I use newspapercolumns I get this error:


Is there an connection between this problems? And how can I solve them?
17 years ago
JSF
I'm trying to get a list of categories wrapped over multiple columns whith the <t:datatable newspapercolumns> attribute.

My code is like this:


I know that my bean works properly because I'm able to output the list in one column.
When I try to open this page in my browser, I get the following error:



How do I solve this problem? I've googled for an answer, but all I find is that I have to rewrite the setter method, but I dont know where to find the setter method in the first place.

Please help me!
17 years ago
JSF
Haven't anybody tried something like this before?
17 years ago
JSF
I'm sorry!!! I did not read the name policy when I edited my profile.
[ February 21, 2007: Message edited by: brummeline kebratn ]
17 years ago
JSF
I'm trying to make a tab-navigation menu with the following code:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
<html>
<head>
<link rel="stylesheet" href="css/frontend.css" type="text/css" media="screen">
</head>
<body>
<f:view>
<h:form id="tabs">

<t:panelTabbedPane width="100%">
<t:panelTab id="alle" label="Alle" styleClass="tabcontainer">
<f:verbatim>
<td class="left_part_of_tab"><img src="context/images/tableft.gif" alt="left part of tab angled line"></td>
<td class="center_part_of_tab">Alle</td>
<td class="right_part_of_tab"><img src="context/images/tabshadow.gif" alt="tab shadow"></td>
</f:verbatim>
</t:panelTab>
<t:panelTab id="diagnostikk" label="Diagnostikk" style="tabcontainer_active">
<f:verbatim>
<td class="left_part_of_tab_active"><img src="context/images/tab_active_left.gif" alt="left part of tab angled line"></td>
<td class="center_part_of_tab_active">Diagnostikk</td>
<td class="right_part_of_tab"><img src="context/images/tabshadow.gif" alt="tab shadow"></td>
</f:verbatim>
</t:panelTab>
<t:panelTab id="legemidler" label="Legemidler">
<f:verbatim>
<td class="left_part_of_tab"><img src="context/images/tableft.gif" alt="left part of tab angled line"></td>
<td class="center_part_of_tab">Legemidler</td>
<td class="right_part_of_tab"><img src="context/images/tabshadow.gif" alt="tab shadow"></td>
</f:verbatim>
</t:panelTab>
<t:panelTab id="kontakt" label="Kontakt oss">
<f:verbatim>
<td class="left_part_of_tab"><img src="context/images/tableft.gif" alt="left part of tab angled line"></td>
<td class="center_part_of_tab">Kontakt oss</td>
<td class="right_part_of_tab"><img src="context/images/tabshadow.gif" alt="tab shadow"></td>
</f:verbatim>
</t:panelTab>
<f:verbatim>
<td style="border-bottom: 1px solid #d1cdb9;"> </td>
</f:verbatim>
</t:panelTabbedPane>


</h:form>
</f:view>
</body>
</html>

When I open the page I get a tabpanel, but it doesnt look like it is supposed to. I would like the tabs to look like what I have spesified in the <f:verbatim> parts of the code. How do I get it to look like that?
[ February 21, 2007: Message edited by: brummeline ]
17 years ago
JSF