Tagged Questions
Woodstock is an old and abandoned JSF 1.x component library. It was initially part of the "Visual JSF Editor" of the "Sun Java Studio Creator" IDE which is later known as Netbeans. It uses "webuijsf" as default tag prefix.
1
vote
1answer
60 views
JSF - Component Libraries, migrate or not migrate?
I am using an old component library called Woodstock. Whenever I try to change something I get stuck with not find finding adequate documents about this library. I am thinking about migrating to ...
1
vote
2answers
724 views
IDE that provides design view for JSPs using JSF
NetBeans used to do that but with the deprecation of Woodstock (rather merging with ICEFaces) and with ICEFaces not supporting Visual Web Project it is difficult to choose NetBeans now [1].
Eclipse ...
0
votes
0answers
38 views
JSF 2.0 Ajax Implementation
I am trying to solve this problem for days but couldn't find a proper solution. People suggested to use Ajax but I couldn't implement it. I have a jspf page in which I am using facelets. I have a form ...
0
votes
0answers
82 views
Replacing the behavior of JS Alert Box in JSF 2.0 with what?
I am using JSF 2.0 with JSPX and Woodstock. I have a form whose input fields have validation checks and there is a submit button. Right now when I click on the submit button I get an alert box ...
0
votes
1answer
82 views
Checking if a button is clicked once or twice
I have a question about jsf lifecycle and back beans in JSP:
I have a button which I want to control if it was clicked once or twice. I have a flag for it in the back bean:
protected Boolean ...
0
votes
0answers
32 views
Why one of these codes worked but not the other?
I had a checkbox generated by JSF which is backed by a Java Bean method. As a result of some other requirement this checkbox's value supposed to change. I did this by:
myCheckBox.setSelected(true);
...
0
votes
0answers
41 views
Check box is not re-rendered after bean execution
I have a button which I want to use for selecting all checkboxes in my datatable.
Jsf:
<webuijsf:button actionExpression="#{user$recentreports.selectAllButton_action}" ...
0
votes
1answer
86 views
Checkbox and button interaction in JSF
I have a checkbox:
<webuijsf:checkbox immediate="true" valueChangeListenerExpression="#{user$recentreports.selectSingleCBEvent}" id="selectCB" binding="#{user$recentreports.selectCB}" ...
0
votes
1answer
54 views
To hide/unhide a button in the first row of a table
I have a table that is created using an old JSF component library called Woodstock. I want to show a button just in the first row.
.jsf file:
<webuijsf:form id="reportlist">
...
0
votes
0answers
45 views
Default Value For Calendar
I am trying to add a default value to the calendar in my jspf file using Woodstock component library:
<div class="rave-layout" xmlns:f="http://java.sun.com/jsf/core"
...
0
votes
1answer
30 views
Migration options for old java studio creator project to Icefaces
Our project currently uses the very old Java Studio Creator framework and now has new requirements and plans for future deployments which require the application to finally remove JSC and migrate to ...
0
votes
1answer
186 views
Problem in Chrome version > 9 with jsf woodstock table rendering
Chrome seems to have a bug when rendering jsp's with tables generated by woodstock webkit.
The table renders but when the page finishes loading, it vanishes.
It might be some problem with the ...
0
votes
2answers
332 views
Flex components for JSF
It would make sense to use Flex components with JSF, but searching around I can't find something mainstream. At least not as mainstream as ICEFaces, Woodstock and the other JSF components.
0
votes
3answers
3k views
JSF how do I retrieve the selected rows of a woodstock table
I have a JSF woodstock table with checkboxes. When a row is selected I want to do some processing with those items. I managed to get a selection of RowKey objects but can't find out how to get the ...