Questions tagged [jsf-1.1]

JSF 1.1 is a Java specification for building component-based user interfaces for web applications.

JSF 1.1 was released in 2004 many bugs were fixed in this release , JSF 1.1 uses JavaServer Pages (JSP) as its default templating system, it's a Java specification for building component-based user interfaces for web applications.

Related tag

34 questions
3
votes
1 answer

Why usage of any a4j element in jsf add to page code second body and head tags?

In my jsf page code I have a structure similiar to this one : …
Artur Skrzydło
  • 1,135
  • 18
  • 37
3
votes
1 answer

h:selectOneMenu bound to int incorrectly errors "Validation error: Value is not valid"

I'm stuck with JSF RI 1.1_02 and seeing this problem. Here's the Facelet code I'm expecting to work:
billy
  • 1,435
  • 1
  • 11
  • 11
2
votes
1 answer

myfaces htmlHead is not rendered first

I have started to maintain a legacy JSF application. It uses myFaces 1.1.x and tomahawk 1.1.6. I need to print META tag X-UA-Compatible as the first element of HEAD element otherwise IE will ignore it. <%@page contentType="text/html;charset=UTF-8"…
Leos Literak
  • 8,805
  • 19
  • 81
  • 156
2
votes
0 answers

Why is Ajax4JSF Script automatically defined on top of HTML page?

I am using JSF 1.1 in a web application. When I run the app in IE 5 it has some UI problems. so, I used the meta tag to open the page in Edge compatibility. Now I have used the Ajax4JSF tag library with URI - https://ajax4jsf.dev.java.net/ajax The…
msTyagi
  • 21
  • 3
1
vote
0 answers

I'm trying to bring some depricated code .createValueBinding to the recommend code update

Here is my current code within the application Java: SourceActiveTab activeTab = (SourceActiveTab)fc.getApplication().createValueBinding("#{sourceActiveTab}").getValue(fc); This is what I'm trying to replace it with based on what I have found here…
RalphC
  • 21
  • 5
1
vote
2 answers

Where are the sources for jsf-impl.jar 1.1 and jsf-api.jar 1.1 located?

Does anyone know where I can get the source code for jsf-impl.jar 1.1 and jsf-api.jar 1.1? I am facing a tricky issue. I am getting an exception in code, and I would really like to see the source. Grae
GC_
  • 1,673
  • 6
  • 23
  • 39
1
vote
0 answers

Replace ice:selectInputDate with jQuery UI DatePicker

I have a JSF 1.1 with IceFaces 1.6.2 project, where in the form I use , but that component uses server resources for rendering Date, I want to change it with JS implementation. How I can do it? I saw that tutorial, but I am a…
BSeitkazin
  • 2,889
  • 25
  • 40
1
vote
2 answers

JSF 1.1 parameters in hidden field

My goal is to pass a string with parameters (Hello {0}) from the backing bean to JavaScript. My current approach is to put the string in a h:inputHidden and let JS read the value onLoad. Sadly f:param inside of h:inputHidden is not working as in a…
SebastianH
  • 2,172
  • 1
  • 18
  • 29
1
vote
1 answer

How to get component value from ActionEvent object?

i am using ajax4jsf with jsf 1.1 and i have code like:
Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498
0
votes
0 answers

Ajaxsupport id is not found in JSF 1.1

Exception thrown when handling the value changes event in JSF 1.1 programmatically with Ajax support: AJAXSUPPORT ID not found. How can I resolve this issue?
user3621756
  • 13
  • 2
  • 6
0
votes
1 answer

cannot run JSF 1.1 application in WebSphere Application Server 8.5.5

I have a war for a JSF 1.1 application built using Sun Java Studio Creator that runs on iPlanet that I have to run on WAS (WebSphere Application Server) 8.5.5. It fails to display welcome page due to infinite recursion. An answer to a similar…
0
votes
1 answer

How to set custom HTTP header while redirecting URL in JSF 1.1?

Our application developed using JSF 1.1 framework. While enabling service provider based SSO, we need to post SAML request data with HTTP header while redirecting to IDP URL. How to set custom HTTP header value while redirecting to IDP URL in JSF…
0
votes
1 answer

Action of a4j:commandLink not fire after modalPanel close

I would like to call the action after click the commandLink and that choose ok to confirm and fire the action in the commandlink. But I could only open a modalPanel and close it. But the action is not invoked in the a4j:commandLink. May I ask how…
0
votes
1 answer

How to get the ID attribute of h:selectBooleanCheckbox in backing bean

So, here is the jsf component: And here is a part of the backing bean java: /** * getValue is a method which checks if a checkbox is selected or not, using the checkbox ID …
0
votes
1 answer

JSF 1.1 - How to get the ID attribute of h:selectBooleanCheckbox in backing bean

So, here is the jsf component: And here is a part of the backing bean java: /** * getValue is a method which checks if a checkbox is selected or not, using the checkbox ID …
Adam
  • 1
1
2 3