Questions tagged [jsf-1.2]

JSF 1.2 is the latest release of the JSF 1.x specification and it works with Servlet 2.5 and JSP 2.1.

JavaServer Faces (JSF) is a user interface (UI) framework for Java web applications.

JSF 1.2 is a specification driven by the JSR-252 expert group under the Java Community Process (JCP).JSF became part of Java EE with this 1.2 release.

Unified Expression Language (EL) a major change in this specification , deprecates the Faces EL of its predecessors.

At a fundamental level, JSF is a way to get values from the user, into the model tier for processing.

See for more information.

JSF 1.2 API Spec

Migrating from JSF 1.2 to JSF 2.0: here

846 questions
3
votes
4 answers

jboss 7 does not scan ext folder of jre

i have a software which runs on jboss and it requires crypto library which resides in jre/lib/ext. I get the following exception: Caused by: java.lang.ClassNotFoundException: com.sun.crypto.provider.SunJCE from [Module…
Ikthiander
  • 3,917
  • 8
  • 37
  • 54
3
votes
3 answers

how can i test a button-click with an JavaScript confirmation with Arquillian?

i'm testing my JSF with Arquillian. a simple button looks like this:
Joergi
  • 1,527
  • 3
  • 39
  • 82
3
votes
1 answer

JSF: How to execute some code on every time a navigation rule is executed?

Is there any way I can execute some code whenever a navigation rule is executed. Basically what I am trying to do is to have a JourneyTracker bean which will hold the current state of the journey (like the current page the user is in).
Nithin Satheesan
  • 1,546
  • 3
  • 17
  • 30
3
votes
1 answer

How to make a4j:commandLink execute action and show modalpanel?

Jsf 1.2, Richfaces 3.3.3, I got the following code working to show a richfaces:modalpanel:
user1415683
3
votes
2 answers

a4j:support onchange event not firing

I'm trying to rerender a second dropdown when i change the value in the first one. But nothing happens when I click and change the value in the first drop down. Have I missed any crucial part? My xhtml:
jakob
  • 5,979
  • 7
  • 64
  • 103
3
votes
1 answer

varstatus attribute in ui:repeat in jsf 1.2

How do I implement the functionality of varstatus attribute in ui:repeat in JSF 1.2? If it can't be used in version 1.2, what are the available options to get the first and last item of an arraylist? Kindly help me by providing your ideas.
Archer
  • 81
  • 1
  • 3
  • 7
3
votes
1 answer

richfaces reRender executed before action listener completion

I have a Richfaces listShuttle component that I need to have the source values (left side) sorted. For this purpose, after the value of the component has changed, I have a backing bean method to sort the elements, and the I want to rerender the…
Alina Danila
  • 1,683
  • 1
  • 24
  • 60
2
votes
2 answers

How does reRender behave if table is not rendered

I was just implementing a crude functionality using jsf+richfaces and came across this situation, so putting this to the open forum for some answers. I have a text field and rich:dataTable inside a form. When value changes in textField, table data…
Satya
  • 2,094
  • 6
  • 37
  • 60
2
votes
1 answer

JSF 1.2 custom component from jsp:include

Before I get started with my question, here are my unfortunate limitations: I'm using JSF 1.2, not 2; so no composite component. I'm using JSP for rendering instead of facelets; so none of those composite components either. I'm not allowed to use…
Zack Marrapese
  • 12,072
  • 9
  • 51
  • 69
2
votes
1 answer

Error in populating rich:tree component in JSF

I was running the tree code My JSF page:
LazyGuy
  • 715
  • 4
  • 12
  • 27
2
votes
1 answer

Can I use JSF 2.0 annotations in a JSF 1.2 application?

What part of the JSF 2.0 framework handles the annotations? I really would like to add them to a JSF 1.2 application. Is that even a realistic goal?
Toby Samples
  • 2,168
  • 14
  • 15
2
votes
1 answer

a4j:keepAlive in rendered section

I'm wondering (or possibly suffering from some keepAlive side effects) about location of (guess what?) a4j:keepAlive in jsp page... Is there any difference between... lets say:
wilu
  • 549
  • 1
  • 12
  • 26
2
votes
2 answers

ToolTip for each SelectOneMenu Items in jsf

My requirement is to provide a tooltip for every option in the SelectOneMenu because label of option is so large that it's not possible to provide such a large size SelectOneMenu .So the label is cutting. Thats why i need tooltip to show the whole…
user1023877
  • 193
  • 2
  • 3
  • 13
2
votes
2 answers

Syntax for linking to got to a different page in a jsf portlet using jboss portletbridge

I am trying to figure out the syntax in a jsf/richfaces portlet using jboss portletbridge to have a link to take the user to the next page after setting some values as part of an action or a listener. The example in JBoss documentation is for a…
Sharath
  • 65
  • 1
  • 7
2
votes
1 answer

Input value not processed in request scoped bean when using conditional rendering

I know this type of question has been asked million times here, but I couldn't find a solution for my problem in relevant posts. JSF 1.2 I have a request-scoped bean with a method used as valueChangeListener: class DoStuff{ ... public void…
kooker
  • 363
  • 1
  • 5
  • 16