Hello All,
I have a need to implement checkboxes besides the names of document names in a
JSF so that they can be sent to a web service on being checked and submitted.
To visualize:
Checkbox Filename1
Checkbox Filename 2
As a first step towards achieving this target, I have identified the concerned
JSP seen in the UI called ‘browse.jsp’ and added the following piece of code by adding a new column to the existing table to house the checkboxes
Also I have written a bean MyBean which paves the way to display 3 checkboxes in that column.
I have added two entries into the faces-config-bean.xml
1) Added the setters to the BrowseBean.jsp which is the parent governing bean responsible for the default display of filenames
2) Added the Bean declaration for the newly created Mybean like BrowseBean (just below it).
After making these changes , I am getting the following error
Can anyone kindly help me in fixing this.
Thank You