icefaces Questions
2
Solved
I have a static List of Select Items in one of my backing beans:
private static List<SelectItem> countries = new ArrayList<SelectItem>();
with the following getters and setters:
pub...
4
Solved
I'm trying out JSF 2.0 (after using ICEfaces 1.8 for the past few months) and I'm trying to figure out why in JSF 2.0 my backing bean constructor gets called multiple times.
The bean is supposed ...
1
I've recognized that when a click is done via JavaScript it won't trigger the action method immediately on IE, instead the browser wait's until the code has gone through the function where click is...
Miscue asked 14/8, 2018 at 11:8
5
Solved
I simply need to perform a very basic for cycle in JSF/ICEFaces, basically rendering column numbers
Something like the following pseudo-code
for(int i=0; i<max; i++)
{
<td>#{i}</td&g...
1
Solved
I am currently using JSF 2.2.7 and Icefaces version 4.0.0. My project was running on Tomcat 7, but I am having trouble trying to get it working on Tomcat 8. I am getting a null pointer exception as...
2
Solved
-xhtml File
I cannot accsses the passed Parameter
<ui:insert>
<ui:include src="#{PopUpBean.includeUrl}">
<ui:param name="includeParam" id="includeParam" value="HalloWert!" /> ...
4
Solved
I have a Map of key / values, which I initialize in @PostConstruct as follows:
Map<String, String> myMap;
@PostConstruct
public void init() {
myMap=new LinkedHashMap<String, String>...
Condescendence asked 18/12, 2011 at 15:41
3
Solved
i am using the ace:fileEntry component to upload files
and after successful upload i get the message that:
'File Entry' uploaded successfully 'filename'.
and i want to override this message and ...
Serge asked 20/11, 2011 at 9:11
1
Solved
I have following piece of code in my jsp file which getSession information:
<jsp:useBean id="bookBean" class="beans.trade.BookBean" scope="session">
<% bookBean.setSession( request.getS...
1
After some questions about WindowScoped and after an answer of BalusC I understand that I would use MyFaces CODI I should before rewrite all my previous code because I can't use Mojarra, so I would...
5
I am struggling with an outOfMemory PermGen issue that has been showing up recently. One of the log snippets that was saved when error appeared:
java.lang.OutOfMemoryError: PermGen space
at java....
Salesperson asked 21/2, 2011 at 12:40
2
Solved
i am using icefaces select on menu to select a user from list of users
and i want to repeat the selectItem for each user
here's what i tried:
<ice:selectOneMenu id="users">
<ui:repeat va...
Butene asked 16/11, 2011 at 13:20
1
Solved
I am getting the following error on my Facelet page, which simply consists of an IceFaces form with two fields and two buttons:
The form component needs to have a UIForm in its ancestry. Sugges...
1
Solved
I've been struggeling a while with a strange bug in our application and wasn't able to find solution, even on google and stackoverflow
i found nothing matching my problem.
First, a short summary o...
4
Solved
I am starting out a new project that involves the use of JSF 2.0.
From my initial reading, the Mojarra and Apache Implementation of the
project covers the basic components that you will need.
But ...
Powerdive asked 6/9, 2011 at 7:54
1
Solved
I am trying to use icefaces 1.7.1 in a war application deployed on JBoss 7.0.0.Final
Deployment is failing with an error "Could not compile stylesheet" in icefaces-comp.jar/META-INF/faces-config.x...
4
Solved
By default JSF appears to be very 'stateful'. I need to allow people to use our application with multiple tabs doing many things in different parts of the application.
I can't seem to find d...
1
ICEpush is still in alpha version, so I am curious if it is appropriate to use in web application on tomcat or tc server with many clients. How many users can be serviced by this technology with sm...
Odious asked 20/1, 2011 at 18:31
2
Solved
LAMP is a stack defined from left to right (bottom to top) as Linux/Apache/MySQL/PHP or generically you can look at it as Operating System/Web Server/Database/Scripting Language. In the generic for...
Overcautious asked 21/6, 2011 at 23:17
2
Solved
I have a problem with my first JSF/IceFaces (version 1.8.2) application running on JBoss 5.1.0.
I recieve an exception after a while, telling me about session problems. This is weird, because i do...
Kymric asked 28/1, 2011 at 10:13
4
Solved
What do you think/use for interface layer? The "backing" layer will be Spring 3.
The criteria are :
Your private opinion
Components
Documentation
AJAX Integration
Browser support
Community
Tool s...
2
Solved
I'm working with Eclipse 3.5, Tomcat 6, JSF 1.2 and IceFaces 1.8. Whenever I update any file in my app, I have to restart the server to see the latest changes. How to update my app without restarti...
Kries asked 3/10, 2010 at 3:50
2
I've seen a few very brief comparisons of ICEfaces vs. RichFaces, but has anyone written a detailed comparison of the two frameworks? I am particularly interested in detailed comparisons of the imp...
1
Solved
Is there a way to dynamically create a selectItem list? I dont really want to have to create lots of bean code to make my lists return List<SelectItem>.
I tried this:
<ice:selectManyChec...
3
I need to generate a PDF from a JSP JSF page. I have searched the net, but I didn't found any examples of how should I do this. I need to transform the whole page, or maybe only the charts that I h...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.