Questions tagged [icefaces]

ICEfaces is a JSF component library. It offers an Ajax framework for developing and deploying rich enterprise applications.

ICEfaces is a JSF component library. It offers an Ajax framework for developing and deploying rich enterprise applications.

Online references

793 questions
24
votes
4 answers

ui:repeat doesn't work with Map

I have a Map of key / values, which I initialize in @PostConstruct as follows: Map myMap; @PostConstruct public void init() { myMap=new LinkedHashMap(); myMap.put("myKey","myValue"); } public Map
Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498
16
votes
1 answer

How to dynamically create a list?

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. I tried this:
DD.
  • 21,498
  • 52
  • 157
  • 246
11
votes
1 answer

The form component needs to have a UIForm in its ancestry. Suggestion: enclose the necessary components within

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. Suggestion: enclose the necessary components within…
Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498
11
votes
4 answers

Icesfaces vs Myfaces vs Primefaces

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 I know that user's would seek gui with better…
Mark Estrada
  • 9,013
  • 37
  • 119
  • 186
11
votes
5 answers

java.lang.OutOfMemoryError: PermGen space on web app usage

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.lang.ClassLoader.defineClass1(Native Method) …
Lukasz
  • 111
  • 1
  • 3
9
votes
4 answers

Using JSF with multiple tabs in one browser

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 decent instruction on making this happen without a whole lot…
Andrew
  • 511
  • 3
  • 6
  • 13
8
votes
5 answers

"for" cycle in JSF

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#{i} } the tag iterates over collections, but I don't…
usr-local-ΕΨΗΕΛΩΝ
  • 26,101
  • 30
  • 154
  • 305
7
votes
3 answers

How to override default file upload h:message in ICEfaces

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 display other message (some kind of a summary for…
Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498
7
votes
2 answers

ui:repeat doesn't work with f:selectItem

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:
Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498
7
votes
2 answers

Access static property in JSF

I have a static List of Select Items in one of my backing beans: private static List countries = new ArrayList(); with the following getters and setters: public static List getCountries() { return…
LiamWilson94
  • 458
  • 2
  • 7
  • 26
7
votes
3 answers

Java: How can I generate a PDF file from a JSP JSF page?

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 have on that page. P.S. I'm also using IceFaces.
user239161
  • 71
  • 1
  • 1
  • 2
6
votes
1 answer

CSS style sometimes only applied after a page refresh on a jsf page?

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 of the application setup: ICEfaces 1.8.1 & JSF…
Volker
  • 450
  • 5
  • 16
6
votes
2 answers

Need Help Defining/Understanding the Java EE "Stack"

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 form you can pop in any operating system, such as…
Jazzepi
  • 5,259
  • 11
  • 55
  • 81
6
votes
1 answer

Does anyone use ICEpush on production server under heavy load?

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 small delay? I'm curious what is delay under 100, 1000…
bltc
  • 371
  • 1
  • 3
  • 9
6
votes
4 answers

JBoss RichFaces vs IceFaces vs Apache Trinidad - JSF component libraries comparison

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 support (Eclipse, NetBeans) I found some comparison…
Piotr Gwiazda
  • 12,080
  • 13
  • 60
  • 91
1
2 3
52 53