Tagged Questions
0
votes
1answer
24 views
Create dynamic ENUM Menu Tag in JSF 1.2
I'm struggling on this problem because it destroys my modularity a bit. I'm using JSF 1.2 and facing to use an h:selectOneMenu to select one value of a given set of Enums.
e.g.
public enum State { ...
0
votes
1answer
29 views
JSF custom converter not always used
I've got a custom converter that extends DateTimeConverter, which I've registered for the java.util.Date class in my faces-config.xml. Essentially all that the new converter is doing is adding a more ...
0
votes
0answers
20 views
html5 tags not rendered on ajax in JSF1.2
I'm using seam2 and JSF1.2 and have some html5 tags in the xhtml for example:
<s:div id="loginFormContainer">
<aside>
<h2>4PM</h2>
...
0
votes
1answer
44 views
How to implement web applications more efficiently?
I've been developing a website using JSF & PrimeFaces. At the time of development, I noticed that there're 2 bottlenecks for any web applications. Correct me if I'm wrong.
The bottlenecks are:
...
1
vote
0answers
33 views
how to upload image using rich:upload
I have problem on upload image. Image is uploading correctly but browser is not showing up the image. It shows only after refreshing the page.
<rich:fileUpload id="upload"
...
0
votes
0answers
64 views
JSF 1.2: Navigation rules in a different config file
I am using JSF 1.2 for my application. I am trying to create a separate config file (named: navigation-config.xml) for all the navigation rules throughout my application. Below are the steps I ...
3
votes
1answer
132 views
JSF 1.2 Life Cycle understanding: Executing the ValueChangeListener #2
I am using JSF v1.2 for my application. This is a sort-of-similar question to this thread (answered by BalusC) which I marked as answered some days back.
JSF 1.2 Life Cycle understanding: Executing ...
0
votes
1answer
44 views
ajax calls do not reRender when the page has nested ui:repeat [JSF1.2]
I have a page that have 2 ui:repeat to iterate a complex collection. I need add commandlinks that will update some of the data on the page without refresh the whole page. The code is like the ...
0
votes
2answers
98 views
session handling in JSF 1.2
How do we handle session variables (add/fetch) in JSF 1.2?
A scenario: Consider a login screen where the user logs in successfully, the user model is stored in session. The user modes contains the ...
0
votes
2answers
35 views
Rendering hidden span text inside h:commandLink
We have an accessibility requirement to render certain command links with additional "off screen" text for screen readers. So we want to end up rendering something like (attributes omitted for ...
0
votes
1answer
144 views
JSF 1.2 Life Cycle understanding: Executing the ValueChangeListener method in InvokeApplication phase
I am using a <h:selectBooleanCheckbox> in the facet header of a DataTable. All the rows content for that <h:column> DataTable are <h:selectBooleanCheckbox>. The rows are getting ...
0
votes
2answers
130 views
jQuery clock not working in jsf 1.2
I am implementing jQuery clock in my application. This clock is working fine in HTML/JSP page but not working in jsf 1.2.
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@taglib ...
2
votes
0answers
33 views
Programmatically register taglib reference
Is there a way to programmatically, in a java code, register custom taglib reference?
I am using JSF 1.2_09, rich faces 3.3.3, jsf-facelets 1.1.14.
Specifically:
In this code, jsf Expression ...
1
vote
1answer
50 views
Unable to set input values in List<String> when using a4j:repeat
I am displaying information from a List<String> on the UI inside editable textboxes using <a4j:repeat>. The user can click on a button on the UI to add mmore textboxes and add values into ...
0
votes
1answer
35 views
Icefaces set focus not working
I am trying to set focus to a component in Icefaces 1.8.2, but it doesn't work probably because of the component not being rendered at the time of the method call.
Any ideas?
...
0
votes
1answer
41 views
Conditional validation without binding attribute
I'm dealing with a legacy code base and come across a situation when it's necessary to validate a field "fieldToValidate" if some other field "otherField" has some value (otherwise field is not ...
2
votes
0answers
54 views
Not redirecting to error page on exception
I am trying to navigate to error page if an exception occurred. For that I have defined:
<error-page>
<error-code>500</error-code>
...
0
votes
1answer
38 views
JSF Form Components Not Displaying [closed]
I'm trying to pick up JSF and am trying to create a simple JSF 1.2 application deployed onto Tomcat.
The issue I am having is that when I launch my page in the browser, I can see the form labels but ...
0
votes
1answer
95 views
h:inputText not working with a4j:commandLink
myBean is in request scope.
<h:form id="indexFormID">
<a4j:outputPanel ajaxRendered="true" layout="block">
<h:inputText id="inputForHD" ...
0
votes
1answer
49 views
ice:dataExporter Exporting to pdf issues
I am trying to export some data displayed in my datatable using the component present in the ICEFaces 1.8 components showcase.
In the doc, they have mentioned to import iText.jar (preferably ...
0
votes
0answers
116 views
DataTable First Row First Column taking default value on page load
I have a List containing the employee details.
I am binding the datatable using the List as shown below:
<ice:dataTable id="dataExportTable"
var="employee"
...
0
votes
1answer
67 views
Icefaces 1.8 SelectInputText String value auto-complete
Seems to be some silly mistake in my code but not able to figure it out :(
I have a SelectInputText component in a screen. On selecting a String value from the auto-complete functionality, I need to ...
0
votes
2answers
73 views
h:commandLink not invoked if Java Script is placed inside h:panelGroup
Below is the code,
<h:panelGroup rendered="#{myBean.showDialogBox}"> //Boolean value from bean decides
//if Jquery Dialog box has to be shown or not for this User.
<script ...
2
votes
1answer
52 views
Passing HTML into message bundle
I am in the process of 'Internationalising' my App, which is SEAM 2 / JSF 1.2 based
One thing that is annoying me is having HTML markup in the message bundle, I would like to avoid this if possible, ...
0
votes
0answers
64 views
a4j:commandLink not calling action but invoking PhaseListener
I have a4j:commandLink inside Jquery Dialog box.
$h(document).ready(function() {
$h("#myForm").attr("style", "display:block");
$h("#myForm").dialog({
...
0
votes
2answers
179 views
<h:CommandButton> action attribute not working in JSF 1.2
I am using JSF 1.2 for my application.
In the below code, the action attribute of the Account Detailsbutton is not working, i.e. the method is not getting invoked and nothing happens when I click the ...
1
vote
2answers
148 views
Don't know how to iterate over supplied “items” in <c:forEach>
I am using JSF 1.2 in my application. I am trying to iterate through a String array which is defined in my backing bean like this:
private String[] services;
Below is the managed bean entry in ...
0
votes
0answers
46 views
JSP didn't work on GlassFish v.3.1.2.2
After migration to GlassFish v.3.1.2.2 I had faced with an incorrect functioning of EL parser. Application fails with exceptions like
javax.servlet.ServletException: The class 'java.lang.String' ...
0
votes
0answers
79 views
How to access a bean in ServletContextListener's contextDestroyed
I have a JSF application that uses JSF 1.2 and Servlets 2.3 and Seam 2.2.0. I want to run a sort of backup everytime the application closes. I have tried using the ServletContextListener like this:
...
1
vote
0answers
175 views
Print current html page on printer from java bean in jsf
i need to change javascript window.print() command with java backing bean process.
here, i am using Jsf1.2
as programmatic, print any web page,
we use window.print(). which opens one menu to select ...
0
votes
1answer
146 views
javax.servlet.ServletException: ICEfaces requires the PersistentFacesServlet
I am a beginner in ICEFACES, trying to run my first ICEFACES screen successfully using some ICEFACES components. To get started with. I am using ICEFACES 1.8.2.
I copied the content of my web.xml ...
0
votes
1answer
38 views
selectBooleanCheckbox updates the property in a a4j rerender
I'm on JSF 1.2 and am wondering about a behavior I'm seeing. My JSF page uses a4j:jsFunction to kick off a process and then uses a4j:poll to fetch the progress percentage. This process builds a list ...
0
votes
1answer
109 views
Richfaces 3.3 extendedDataTable onRowClick is setting data from previous row click
I have this datatable with an a4j:support tag so taht when someone clicks on a row, i want to display or hide certain buttons based on the status of the row selected.
The problem is that the data in ...
1
vote
1answer
83 views
JSF 1.2 refresh session bean
I have a JSF 1.2 app that has a session based bean. This bean is used for searching our database.
On our homepage I have a few HTML controls with build up a URL of search parameters, which then sets ...
-2
votes
2answers
146 views
How to validate a field in jsf
I have many fields in my addNew.xhtml page.
I have to do validations of the fields on client side.
One of the field is city.
I want to get a validation error if I don't enter city which says city ...
0
votes
1answer
123 views
reRender rich:tabPanel without losing data
Using JSF 1.2 and Richfaces 3.3, I have this form:
<h:form>
<rich:tabPanel switchType="client" id="tabPnl">
<rich:tab label="MAIN_TAB">
<h:outputText ...
0
votes
1answer
106 views
right click in rich faces component
simply i need right click event in rich faces component specially in suggestionbox.
i need to give some functionality on mouse right click and also on left click.
I think it will be done with rich ...
1
vote
2answers
127 views
View navigation between two different portlets?
I am working on a JSR 286 portlet using JSF 1.2 on WebSphere Portal 7. I have been trying to find a way to do navigation between two portlets on the same page. Essentially:
Click a button on Portlet ...
1
vote
1answer
213 views
Configuring JSF viewstate encryption in JSF 1.2 with Mojarra
I am trying to figure out how to encrypt the viewstate using JSF 1.2 and Mojarra. The odd thing is that it seems to be encrypted by default on some servers, but not on others. For example, on my ...
0
votes
1answer
244 views
Javascript events not working in JSF command button
I am working on JSF 1.x
On an example stated in JavaServer Faces in Action.
The javascript invoked on command button is not working. Both onmouseover/out events are
not executing the methods.
My ...
2
votes
2answers
185 views
#{facesContext} EL expression not resolved at runtime
I am working on JSF 1.x
On an example stated in JavaServer Faces in Action.
My EL expression of 'Faces Context' is not executing at run time in command button on retrieving the image.
My Project ...
0
votes
1answer
113 views
FacesContext loosing its context value only for first time
I have one Facelets page with one h:commandLink.
<h:commandLink value="#{View} »"
onclick="return myJavaScript('#{myBean.param1}');">
</h:commandLink>
function ...
0
votes
1answer
68 views
valueChnageListner not working in jsf
I am new to jsf. I am implementing "valueChangeListener" in my canteen application. In backing bean I have a map of strings.
I have a dropdown in jsp page and when I select value from dropdown , ...
0
votes
0answers
19 views
valueChangeListner not working [duplicate]
I am new to jsf. I am implementing "valueChangeListener" in my application. In backing bean I have a map of strings.
I have a dropdown in jsp page and when I select value from dropdown , listner is ...
0
votes
1answer
107 views
Java Script not getting called in the included Facelets page
I have below code in one (main) Facelets page,
<h:panelGroup rendered="true">
<ui:insert>
<ui:include src="/includeSecondPage.xhtml" />
...
1
vote
1answer
146 views
Migrating from JSF 1.1 to JSF 1.2
Can anybody tell me what things I need to keep in mind before migrating an application from JSF 1.1 to JSF 1.2?
0
votes
1answer
99 views
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 ...
0
votes
0answers
120 views
Uploading Zip file on server with JSF / Tomahawk
I am trying to upload file with
org.apache.myfaces.custom.fileupload.UploadedFile
my file is uploaded successfully without any sort of problem (when I upload only one file)
but when I try to upload ...
0
votes
1answer
108 views
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 ...
0
votes
1answer
71 views
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 <h:dataTable /> inside another <h:dataTable /> but is not working.


