JSF 1.2 is the latest release of the JSF 1.x specification and it works with Servlet 2.5 and JSP 2.1.
0
votes
0answers
12 views
How many XHTMLs for a basic CRUD application
I am creating a basic CRUD application. The read page has 3 "sections" of information. The update page will only be updating one of the sections. So the read and update will both have 2 static ...
1
vote
1answer
35 views
JSF Exception Tags not rendered on page
I created a sample JSF project and trying to run in tomcat 6 but getting errors when the page is showing up. I am newbie to JSF. I also tried changing the file name to html and welcome list to show ...
0
votes
0answers
19 views
Odd behavior in IE8
I have a JSF application on a development server. It uses jcifs for authentication. I can get to the index page with Chrome and Firefox but not with IE8. With IE8, I get "Webpage Canot be ...
0
votes
1answer
32 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
36 views
Disable a h:commandButton when h:inputText has no value
I have two h:inputText textboxes and a h:commandButton. How can i disable the button in case there is no value in either of the text box? Also how do i disable the other text box in case i have value ...
0
votes
0answers
41 views
jquery not working with jsf 1.2
*Hi,
I am using jsf 1.2 and There is a requirement that I have to implement a timepicker in my project But the problem is same timepicker is working in jsp page whereas it is not working in my JSF ...
0
votes
1answer
32 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
22 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
48 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:
...
0
votes
1answer
38 views
ajax not working properly in jsf 1.2
I have implemented AJAX in jsf 1.2 by using ajax4jsf-1.0-6.JAR in my project.
There is a requirement that I have to show a datatable inside a "div" on click of a button on the same page.
I am calling ...
0
votes
1answer
45 views
Ajax submission to update backing bean property in jsf 1.2
I am using jsf 1.2 with rich faces library
I have a form like this :
<a4j:form>
<!-- lof of other components here -->
<h:panelGrid>
<h:inputText id="someOrg" ...
-1
votes
0answers
19 views
JSF Component Tree Ids are not the same as the Container Client Ids (resolved)
I've found this issue when I try to implement the PostRedirectGet Handler. One of the UIComponents previously obtained using a recursion of UIViewRoot.getChildren() cannot be found when I try to ...
0
votes
1answer
25 views
calling a javascript from a4j:jsFunction in richfaces 3.3.3
i have a javascript which i put in the extraHeaderContent:
<ui:define name="extraHeaderContent">
</script> -->
<script type="text/javascript">
function ...
0
votes
1answer
50 views
Display a textbox based on checkbox selected when checkbox list is dynamic using JSF
I have a requirement in my project which specifies to display 2 textboxes based on a checkbox is checked. For every check box selected the 2 textboxes are the same. The twist is the check box list is ...
0
votes
0answers
15 views
cannot deploy application in Glassfish 3.1.2, Icefaces 1.8.1 with jsf 1.2
I write a application use bundled IceFaces 1.8.1 and jsf 1.2. but it cannot deploy in Glassfish 3.1.2.
The error message is
java.lang.ClassNotFoundException: ...
1
vote
0answers
34 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
70 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 ...
0
votes
0answers
25 views
jQuery capture component id on some event
I have some dynamically generated rich:calendar and h:selectBooleanCheckbox components with dynamically generated ids that I need to do dirty checking on. When the user attempts to navigate away from ...
0
votes
2answers
45 views
Catching global “@In attribute requires non-null value” in SEAM 2
On PAGE A is a table with some data from the database.
by clicking on a row, the page will be forwarded to PAGE B and in the controller the entity will be injected
@DataModelSelection(value = ...
0
votes
0answers
43 views
jsf code dose not render content in Internt Explorer but in Firefox
i have a jsp page made with jsf controls and javascript, if i use Firefox it dose render the page very well, but i should use as requirement Internet Explorer.
I post below a frist page (this one ...
3
votes
1answer
137 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
47 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
106 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
0answers
9 views
Removing ViewExpiredException messages in the log in Seam
I was wondering if anyone has found a way to "deal" with the ViewExpiredException messages that are logged by Seam applications. We have dealt with the expection itself, everything redirects correctly ...
0
votes
2answers
46 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
28 views
Jquery trigger click with valueChangeListener on tr:selectManyCheckbox
I am facing one issue with trinidad selectManyCheckbox
<tr:selectManyCheckbox immediate="true" valueChangeListener="#{EmployeeBean.valueChangeUser}" autoSubmit="true" id="abc" >
...
0
votes
1answer
161 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
137 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
36 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
54 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
39 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
50 views
Blank JSF page using JBoss AS7
I want to make a simple hello world web application using
JSF 1.2 + JBoss AS7 + Maven 2.
After doing necessary config and deploying application on JBoss AS7, in my page i'm trying to show a simple ...
0
votes
2answers
97 views
Access Resource Bundle from properties file in JSF osgi bundle webapp
I am getting an HTTP 500 error from server when i try to read the properties file in a JSF page. Reading Bundle from class file is working though.
Below is the structure of my Sample webapp which is ...
0
votes
1answer
46 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 ...
0
votes
0answers
43 views
a:visited not working with h:commandLink in JSF 1.2
We have a requirement to change the link color if the link has been used(clicked).
We are using h:commandLink with an action method. Below is a code snippet.
.xhtml file -
<h:commandLink ...
2
votes
0answers
60 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
0answers
70 views
SOLVED: MyFaces JSF 1.2, Facelets: h:commandButton h:commandLink no more works
I have a AppFuse 2.0.2 JSF Modular old (year 2008) project, today I opened and wanted to implement some new feature. And I've noticed, that clicking on any h:commandButton, h:commandLink pages only ...
0
votes
1answer
39 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
0answers
35 views
How to create custom search dialog in JSF
I am using Jsf and I need to create a typical search dialog box with input field and a lookup image. On click of lookup image it should open a modal dialog and with list of company names. On click of ...
0
votes
0answers
60 views
uncaught typeerror cannot read property 'action' of null JSF
The following is the code of my jsf page.
<rich:modalPanel id="userMgmtPanel"
autosized="true" width="300">
<f:facet name="controls">
...
0
votes
1answer
100 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
41 views
jpa entity mappagin a different value
i have a column in a table: Status which has the following values: P, A, E, C....
because i show this values on a jsp page i would like to map this values to: P-> processing, A->....
E-> errror , C-> ...
0
votes
1answer
52 views
jsf 1.2 popup dialogue box on delete button press
I need to have a confirmation dialogue box onclick of a delete button. I am using Jsf 1.2 can I use primeFace or RichFaces to do it? or what is the approch?
0
votes
1answer
56 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
124 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
76 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
74 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
69 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
192 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 ...
