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
0
votes
1 answer

Java Script not getting called in the included Facelets page

I have below code in one (main) Facelets page, Below is the content in…
Vikas V
  • 3,176
  • 2
  • 37
  • 60
0
votes
1 answer

JSF page splitting

During working with JSF 1.2 one page code is too large and JDeveloper gave too large code in service method exception. Now I want to split my JSF file in smaller files. During splitting I need some help and suggestion. Beacuse the whole page binds…
seeker
  • 79
  • 2
  • 16
0
votes
1 answer

inner working of JSF 1.2

I'm trying to understand the inner workings of JSF 1.2 sun implementation. I have the following questions. It is stated that Lifecycle class manages the processing of the entire lifecycle of a particular JavaServer Faces request. It has execute and…
John Eipe
  • 10,922
  • 24
  • 72
  • 114
0
votes
1 answer

Query regrading navigation rule in JSF 1.2

If I have below navigation rule : Mainview outcome1 view1
Atul
  • 1,560
  • 5
  • 30
  • 75
0
votes
1 answer

Missing request parameter

we have an application made with JSF 1.2. We use JBoss 4.2 and Apache. The issue we are having appears randomly in the production enviroment. We have in a JSP page an static link, similar to:
maqjav
  • 2,310
  • 3
  • 23
  • 35
0
votes
0 answers

JSF view displaying outdated value

I have two entities and a backing bean in my application. Following, a simplified version of it: Controller and Models: class BackingBean { private List collectionOfA; private A currentA; private B currentB; private String…
Carlos Melo
  • 3,052
  • 3
  • 37
  • 45
0
votes
1 answer

How to extend a converter in JSF 1.2

I don't like the way f:convertNumber display NaN ("\ufffd") and both of the infinities ("\u221e"). Is there a way to extend the out-of-the-box converter in order to inject my own display logic? Thank you.
geca
  • 2,711
  • 2
  • 17
  • 26
0
votes
1 answer

Issue with JSF1.2 in Websphere 8.0.0.4

Is there any conflict in Websphere 8.0.0.4 with JSF 1.2 (Sun provider/ IBM provider)? I am getting below issue while accessing my application: Caused by: java.lang.ClassNotFoundException: com.sun.faces.application.ApplicationAssociate at…
Narendra Verma
  • 2,372
  • 6
  • 34
  • 61
0
votes
1 answer

Panel grid alignment in jsf 1.2

I am having problem in aligning data tables inside a panel grid. Always data table is getting aligned in the center instead of the top. 'vertical-align:text-top;' CSS class also not working.
Sathesh S
  • 1,253
  • 3
  • 23
  • 54
0
votes
1 answer

Showing images like Google image search using JSF 1.2

I want to show images like Google image search using JSF 1.2. I tried using inside another but is not working.
Sathesh S
  • 1,253
  • 3
  • 23
  • 54
0
votes
1 answer

h:graphicImage not reRender

i have a jsf file where i have selectOneMenu and a h:graphicImage.Now the problem is when i send onchange request through selectOneMenu and want to reRender the h:graphicImage and want to show and hide boolean in action bean.But not work properly.…
seeker
  • 79
  • 2
  • 16
0
votes
1 answer

JSF 1.2 dataTable Add Columns Dynamically

So I have a page that asks users to input peoples information that I will use to do a search within a database for more robust demographics. The issue I am having is that when then are adding people to look for in the search (via a ) I am adding new…
spaceherpe61
  • 43
  • 1
  • 5
0
votes
1 answer

JSF trying to create a managed property

I have 2 beans, one request scoped and 1 session scoped. I'm trying to access the session scoped bean in the request bean by creating a managed-property, but i keep receiving the error: com.sun.faces.mgbean.ManagedBeanCreationException: Unable to…
Catfish
  • 18,876
  • 54
  • 209
  • 353
0
votes
1 answer

Save dialog box in jsf

I have created pdf using IText library Now I want when the user clicks on the button ,it should prompt a save dialog box to the user to allow to browse the destination location to store the file. Now My code looks like Document document = new…
Edward
  • 1,367
  • 8
  • 26
  • 43
0
votes
1 answer

Rendered attribute not rendering rich panel on value change listener

I am developing an application using JSF 1.2 (sun RI) and richFaces 3.3. I want to display a panel when a list value is changed in select list,below the select list. Following is the code for the same : >
Atul
  • 1,560
  • 5
  • 30
  • 75