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
1
vote
1 answer

Rerender region containing fields and markup without using rich:panel?

I've got a command button that should rerender some specific region with AJAX. As long as the region is defined as
user321068
1
vote
1 answer

maxIntegerDigits of jsf convertNumber

I've got strange problem with . When i set maxIntegerDigits to 15 and enter, say, 16 of "1"s, i get correct number with fifteen "1"s, but if i enter 20 of "1"s i get not a number with fifteen "1"s but a number with 11 "1"s and 4…
mykola
  • 1,736
  • 5
  • 25
  • 37
1
vote
1 answer

Add HTTP header to RenderResponse

I want to add a HTTP header property to a RenderResponse. I've written a RenderFilter with which I gain access to the RenderResponse. Unfortunately, when I call setProperty and set a property, it never gets to the client. I'm checking this with…
user321068
1
vote
2 answers

Java script Validation that one of f:selectItem must be selected

I want to write a javascript validation code for validating that one of f:selectItem must be selected but i'm unable to access checked property of f:selectItem through java script. Below is my JSF page. JSF Page:- <%@taglib prefix="h"…
Adnan
  • 4,517
  • 15
  • 44
  • 54
1
vote
1 answer

Force component render order in jsf

I have a (IBM)jsf 1.2 application where i try to show errors at the top of the page using a faces managed bean, my problem is if an error is created in one of a component getter and i write it to the faces managed bean (error bean),the errorbean is…
1
vote
1 answer

AspectJ with JSF1.2

I am using JSF1.2 framework. I didnt Integrate my application with Spring.I want to perform profiling on method invocations. my application file is EAR (EJB + WAR ). i can get the session beans methods execution time with the help of interceptor but…
1
vote
1 answer

get path of image from bean object to jsf page

i have an object that holds an imageIcon, in a jsf page this line suppose to show the img now in myObj the getImg method return the path of the img as a string, also when entered view…
akub
  • 99
  • 2
  • 10
1
vote
1 answer

how to know the server(tomcat6) is shutting Down in a JSF 1.2 app

I am trying to implement a alerting system in my web app which mails me when the tomcat is shutting down. I can do it by parsing the server logs. But i want the app to mail me.
Archan Mishra
  • 887
  • 7
  • 18
1
vote
2 answers

content disposition with attachment doesnt work for AJAX response

The problem for me is pretty straight forward. Onclick of an anchor tag , I execute a javascript using a4j:jsFunction and the action of this function should stream an XML file from server. The problem is , the stream sent on richfaces response…
chaosguru
  • 1,933
  • 4
  • 30
  • 44
1
vote
0 answers

Java 17 support to jsf1.2 and struts 1.1

In the current application we have JSF1.1.10 and struts 1.1 for tiles layout and we are trying to migrate the java version to 17. Please provide the impacts on JSF 1.1.10 and struts tiles 1.1 and which version of latest JSF should be considered if…
1
vote
1 answer

Where to keep h:messages in a h:datatable while validating two h:columns

I am using one h:selectbooleancheckbox in each row to make 2 columns editable. Have a look at my JSF page
Sreeram
  • 3,160
  • 6
  • 33
  • 44
1
vote
2 answers

Why is my seam app only deploying partially?

I have a seam app that my colleague created. It is maven-based. I'm trying to get make it work in eclipse which is baffling in itself, but I managed to get rid of all the eclipse "Problems" (as displayed in the problem view) and the app builds…
april26
  • 833
  • 3
  • 14
  • 27
1
vote
3 answers

Disable User Selection in

I am trying to disable user selection in tag.
AngelsandDemons
  • 2,823
  • 13
  • 47
  • 70
1
vote
0 answers

HtmlDataTable Not Serializable

I am trying to Session repication in cluster envoirnment. After change all my backing beans to serialized object but I am unable to Serialize HtmlDataTable Caused By: java.io.NotSerializableException: javax.faces.component.html.HtmlDataTable at…
Anupam
  • 509
  • 1
  • 6
  • 16
1
vote
2 answers

How to maintain/save row values when generating a new row?

i have the following bean: public class MyBean { public ArrayList getReportRows() { return reportRows; } private final ArrayList reportRows = new ArrayList(Arrays.asList( …
Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498