Questions tagged [icefaces-2]

24 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
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
3
votes
1 answer

Integrating ice/ace:dataTable with JPA and request-scoped beans

I'm wondering what is the right way to deal with dataTables that take input in a Hibernate/JPA world. As far as I can tell, one of the following three choices is causing the whole house of cards to fall apart, but I don't know which one is…
Daniel Lyons
  • 22,421
  • 2
  • 50
  • 77
2
votes
0 answers

Dynamic DataTable display empty rows

i am trying to create dynamic datatable without binding.Because binding is not working with view scoped bean. But the problem is dynamic datatable rendered only once. If i try to change the values it will display empty rows..... ICEfaces 2.0.0 JSF…
2
votes
3 answers

Faces messages are not cleared on subsequent requests

Case is as follows: you have a bean method which parses a file, and if parsing fail, error message is added, and if parsing successful, success message is added. But when you make consecutive operations: fail > success , i expect that the fail…
Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498
2
votes
1 answer

Set content type for static resources

I have been trying to find out a way to set content type for static resources within my web application, which are provided as downloadable links. For example I have a .CSV file and when I provide this link on the browser, upon click it's opening in…
IndoKnight
  • 1,846
  • 1
  • 21
  • 29
2
votes
1 answer

javax.faces.component.UpdateModelException: javax.el.PropertyNotFoundException:

I am working on a JSF2, Icefaces web application. I have the following view: I get the below…
Superman9999
  • 815
  • 3
  • 16
  • 30
1
vote
2 answers

ICEfaces 2.0.0 + View Scope + Binding

I want to migrate a project which is in icefaces 1.7.2 to icefaces 2.0.0. But i am facing problems with binding. Because the entire project uses binding for each and every UI component and it uses request scope in older version. If i want to…
1
vote
1 answer

Custom selectItems

i want to customize selectItems to display an image conditionally beside each checkbox so first i tried to display the image for all checkboxes but it gets displayed only once, here's what i tried:
Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498
1
vote
1 answer

IceFaces menuBar + menuItem display bug on IE7

Looking for some help for a small display bug. Here is a code sample running on JBoss 7.0.2.Final with IceFaces 2.0.2 :
Wis
  • 705
  • 1
  • 11
  • 34
1
vote
3 answers

icefaces-facelets.jar Where is it on IceFaces 2?

Does anyone know where can i get the icefaces-facelets.jar do i have to downloads the 1.8 specification? is it compatible?
Necronet
  • 6,704
  • 9
  • 49
  • 89
1
vote
1 answer

Disable past days in selectinputdate icefaces

How I can disable past days in a selectinputdate popup in icefaces?
Suko
  • 13
  • 3
1
vote
1 answer

How to change delimiter in csv using icefaces data exporter

I like to know how can i replace delimiter in csv file generated by data exporters from icefaces. I am using icefaces 2.0-Beta1.
Rehman
  • 3,908
  • 6
  • 28
  • 29
1
vote
1 answer

ValueChangeListener issue with nullpointexception

I am facing errors when using ValueChangeListener in the SelectOneMenu component. I am not sure whether it is due to the method it causing this issue or because xhtml couldn't find the method. ERROR 12:54:10,815 SEVERE…
VeerM
  • 105
  • 4
  • 11
1
vote
1 answer

ENTITY object in the JSF SelectOneMenu is not working

I want to get the instance of the Entity from SelectOneMenu so i can assign the entity variables to some other method. But it is pointing to null. xhtml code
VeerM
  • 105
  • 4
  • 11
1
2