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

Migration from myfaces 1.1 to 1.2

I'm trying to upgrade our web application from myfaces 1.1 to 1.2. I hoped it is easier than migration directly to the newest 2.x version. However, I'm getting such an error, when I'm trying to start the application: SEVERE:…
pkalinow
  • 1,619
  • 1
  • 17
  • 43
0
votes
3 answers

Jboss Server migration causing Exception?

My Jboss Seam application is working just fine at a local environment, but when i try to deploy it on a Remote Jboss, some pages redirect to the debug page, with the following Exception: Exception during request processing: Caused by…
user1415683
0
votes
1 answer

com.sun.faces.logicalViewMap for Lookup / Popup JSF 1.2

I have a requirement where once a lookup is used i do not want the lookup view to exist in the com.sun.faces.logicalViewMap. can someone provide me some hits as to how this can be achieved. basically i do not want the logicalViewMap to have more…
Ravi
  • 391
  • 2
  • 18
0
votes
1 answer

Need to provide underline below accesskey for button in jsf 1.2

Need to provide underline below accesskey for button in jsf 1.2 Suppose access key is CTRL+SHIFT+S and button text is Submit, So only below S there should be underline. Please help how to do it.
Arindam
  • 555
  • 1
  • 8
  • 24
0
votes
1 answer

JQuery - droppable function only works for last element of contains selector

I'm having trouble using the attribute contains selector combined with the droppable fundtion. I'm searching for div elements with an id which contains the string "dropAble" $('div[id*="dragAble"]').draggable(); $('div[id*="dropAble"]').droppable( …
HashtagMarkus
  • 1,641
  • 11
  • 20
0
votes
1 answer

POST login request to some 3rd party web application

I am developing WebApplication written in Java (JSF 1.2) and I need to implement new functionality which open other 3rd party WebApplication (in other domain) in new browser window. I need to login to this 3rd party WebApplication using form POST…
bary
  • 1,699
  • 2
  • 15
  • 24
0
votes
2 answers

validateLength in JSF 1.2 Vs JSF 2.1

I have recently upgraded from JSF 1.2 to JSF 2.1. Here is my code: Product Code:
Sri
  • 309
  • 1
  • 9
  • 24
0
votes
1 answer

How to know in JSF 1.2 and richfaches the id from h:column in a h:datatable

I have a datatable from which I open with a click on an image the . But the
Joergi
  • 1,527
  • 3
  • 39
  • 82
0
votes
1 answer

Bean Validation ADF and myFaces extVal on weblogic 10.3.6

I have tried to use myFaces extVal Bean Validation on Weblogic 10.3.6 (JSF 1.2, patched JPA to 2.0) and with ADF Faces. Is it possible to use "ADF Faces" and "Apache myFaces extVal Bean Validation" together on Weblogic 10.3.6? I habe tried to add…
Max
  • 475
  • 1
  • 10
  • 19
0
votes
1 answer

jsf navigates to same page again and again

My view: test test1 My classes: class Test { // ... public String action() { …
user822879
  • 11
  • 2
0
votes
2 answers

How to mapping a value to a text?

I query from database and I receive an integer list. Ex: 0, 1, 2 If I display the digits to browser, users will not understand the meaning of number. So, I would like to map a digit to a string. Ex: 0: Pending, 1: Active, 2: Inactive, so on. File…
Thinh Phan
  • 655
  • 1
  • 14
  • 27
0
votes
1 answer

how to open popup window using adf faces

How to open a popup using adf faces? I am using adf-faces-api-10_1_3_0_4.jar and adf-faces-impl-10_1_3_0_4.jar files for UI.
UdayKiran Pulipati
  • 6,579
  • 7
  • 67
  • 92
0
votes
1 answer

what does rich:isUserInRole call?

I am using RichFaces 3.3.3 with JSF 1.2 and I would like to understand the behaviour behind rich:isUserInRole. What is being called? When and where it is fired in server side? For reference:…
rodrigocprates
  • 498
  • 6
  • 22
0
votes
1 answer

Action is executed only one time?

I have the following code working, the objective is simple: execute the action, then open the modalpanel, it's working, but the action is only executed one time, after that the modalpanel is opened without the action being executed.
user1415683
0
votes
1 answer

when using JSF1.x can EL read back from a Set<> to find a value?

I have the following xhtml:
JoJo
  • 4,643
  • 9
  • 42
  • 65