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

Call JSF 1 bean action on page load

I am trying to invoke a bean action on page load, bean is registered in session scope. I have accomplish this with js like this:- document.getElementById('form1:show_data').click(); I know it can be done alternatively by calling the action in bean…
Zeeshan Bin Iqbal
  • 1,206
  • 2
  • 8
  • 8
0
votes
0 answers

Rendered attribute executing before button action

I have two view htmls(V001 & V002) both of which are to be rendered using the same jsf page. There is a continue button in my JSF Page which performs the action of storing the V001 DOM in Cache and fetches the V002 from Content server and displays…
S.P.
  • 1
  • 2
0
votes
2 answers

Rendering elements in MyFaces 1.1.1

I am trying to create a simple jsf page where I have a dropdown whose value determines which label to render. Initially all the labels' render is set as false through the backing bean constructor. But I have called submit onchange which sets the…
0
votes
0 answers

action is invoked only on first click in JSF 1.1

I have got the following issue. I'm using a4j:button but invokes action only when I click it for the first time. My jsp structure is like the following : ...
Artur Skrzydło
  • 1,135
  • 18
  • 37
0
votes
0 answers

TypeError: element.selectNodes is not a function at Object.A4J.AJAX.XMLHttpRequest.getElementsByTagName

I have to maintain an existing enterprise web application which is based on JSF 1.1 and Ajax4JSF. I want to add an asynchronous standard validation to an existing input field using . It boils down to the below code snippet: <%@ page…
Joerg
  • 790
  • 2
  • 10
  • 23
0
votes
1 answer

How to download a file from webapp folder using JSF 1.1?

I am using JSF 1.1. On click of a button I need to download a file from webapp/pdf directory. How can I achieve this?
0
votes
0 answers

Error page handling doesn't work as it should in JSF 1.1

I have pretty old EE application that is using the JSF 1.1.8, MyFaces and Facelets. The application is running on the Websphere 8.5. I'm using exception handling in my web.xml like this:
serg
  • 1,003
  • 3
  • 16
  • 26
0
votes
1 answer

Usage of h:outputlabel vs label

In JSF 1.1 (unfortunately I'm semi-stuck using legacy infrastructure) what is the advantage (or indeed purpose) of using when I could just use a standard
0
votes
0 answers

How do you control what java code is produced by a jsf 1.1 tag? (Not subjective!!)

JSF tags get "compiled" into java code. How can I change the output, the java code, of a tag? Where is the template for what gets written to the java source. Here is an example. Translates to: // f:view …
GC_
  • 1,673
  • 6
  • 23
  • 39
0
votes
1 answer

How come my JSF code is getting a "java.lang.OutOfMemoryError: Java heap space"?

I am getting a java.lang.OutOfMemoryError: Java heap space and I am not sure how to avoid it. I am writing out to what I thought was basically a socket buffer. I think it is javax.servlet.jsp.JspWriter. However, when I attempt to write very large…
GC_
  • 448
  • 4
  • 23
0
votes
1 answer

Custom component in IceFaces?

Who knows how to create a custom component in an old version of IceFaces 1.6.2? I didn't find anything in the web about that, just some materials about custom components for JSF 1.1. Please, show me simple "Hello World" custom component with file…
user2025818
0
votes
0 answers

How to identify which row is clicked and which list entry it maps to

I have the requirement to have 3 columns with a edit command link as fourth column in the data table. The columns can have duplicates values in many rows. The columns are editable input text field but will be disabled on load which has to be enabled…
Vikram
  • 21
  • 6
0
votes
2 answers

Not able to call jsf action through h:commandbutton in chrome

Having a Question on JSF j:commandButton's action, chrome browser and JSF 1.1 Calling JavaScript function on click of command link as below
user3682520
  • 81
  • 3
  • 14
0
votes
1 answer

valueChangeListener of rich:comboBox getting called on submit which is unintended

I'm facing a issue where on changing rich:comboBox value, i need to call backing bean. So i'm using valueChangeListener with a4j:support event="onchange" as bellow:
Saurabhcdt
  • 1,010
  • 1
  • 12
  • 24
0
votes
1 answer

JSF 1.1 DataTable Reuse

I am working on a project that the previous programmer(s) duplicate code everywhere. I need to make a change to some JSF code but don't want to duplicate my changes every where. I figure there has to be a better way. Here is the scenario; There are…
millsofmn
  • 301
  • 3
  • 12