The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
39 views

JSF- SelectManyCheckBox cannot be add programmatically

I'm using primefaces 3.5 . I have a HtmlPanelGrid to show a popup which contain a list of checkboxes. But the popup isnt show up. private List<String> selectedList; public List<String> ...
0
votes
1answer
68 views

h:selectManyChexkbox`s <f:ajax event=“click” listener doesn't fire and gives an error

I want to fire an event change listener when the user selects / deselects something in the h:selectManyCheckbox, if it leaves it alone nothing should happen. My xhtml: <!DOCTYPE html PUBLIC ...
2
votes
0answers
360 views

JSF2 or primefaces p:selectManyCheckbox styling with icons

One question who styled manycheckboxes with icons? <p:selectManyCheckbox value="#{Step4Bean.selectedItems}" id="tag-list" > <f:selectItems ...
0
votes
2answers
122 views

selectManyCheckbox elements are not copying to array when items are checked

Okay, I am not sure why it is saying that my target is not a collection or array because I am trying to put the results of a selectManyCheckbox into an integer array. It is simply a checkbox of 1-50 ...
0
votes
1answer
110 views

Collection of selectManyCheckbox inside a ui:repeat knows which element of the repeater it belongs to

I am developing a web app using JSF 2. My web app among other things contains a series of questions put one at a time (so one question is visible at a time) and have multiple answers (I use ...
1
vote
0answers
145 views

h:selectManyCheckbox does not respect attribute “collectionType”

several h:selectManyCheckboxs are backed by this map of type: Map<Type, ArrayList<MyItem>>. The xhtml snippet looks like this: <h:selectManyCheckbox ...
0
votes
1answer
167 views

More than 1 row with h:selectmanyCheckbox

I have a list of 16 items which should be shown like this 1 2 3 4 5 6 7 8 etc. 4 Items in a row and then it should add another row. My problem is that your only allowed to show the info like 1 2 ...
0
votes
0answers
273 views

PrimeFaces selectManyCheckBox don't work with enctype=“multipart/form-data”

I'm having a problem with a form that has the enctype="multipart/form-data" attribute and the Primefaces <p:selectManyCheckBox>. This is my code: <f:view ...
0
votes
0answers
67 views

JSF2: Dynamic “SelectMany” Tag send no data in IE9 with ajax

First question but have been a fan of the site for a while. I have a simple setup where I update the contents of a tag from a onchange on a . Now to the problem: When the checkbox is clicked no ...
1
vote
2answers
540 views

dynamically creating selectManyCheckbox with tooltip

I have a HashMap in the backing bean and I want to dynamically render multiple select box. Here is the code: <h:selectManyCheckbox id="id" value="#{backingBean.value}" ...
1
vote
1answer
910 views

Primefaces ManyCheckbox inside ui:repeat calls setter method only for last loop

I have a <p:selectManyCheckbox> inside <ui:repeat>, getting it's items from a List of a certain Object Class (provided by <ui:repeat>-variable) and is supposed to save the chosen ...
1
vote
1answer
202 views

JSF 1.1: selectManyCheckbox not submitting properly

I have a problem with the selectManyCheckbox tag.. We are using JSF 1.1 inside a JBoss Portal (i think its version 4.2, but not sure).. I have the following JSF markup: <h:selectManyCheckbox ...
2
votes
0answers
80 views

The checked values clear when the page is refreshed. in h:selectManyCheckbox

I have a problem on using h:selectManyCheckbox. The checked values clear when the page is refreshed. I have used JSF 1.2 <h:selectManyCheckbox value="${dmsParticipantsForm.filterCompany}" ...
0
votes
2answers
1k views

Select ALL checkboxes in t:selectManyCheckbox

I have created web-application using JSF 2.0 where I have many checkboxes. I want to select those checkboxes on clicking Select All Checkbox. I have below code <t:selectBooleanCheckbox ...
0
votes
2answers
204 views

Display 4 checkboxes on one line instead of all checkboxes on one line

I have created web-application using JSF 2.0 where I have checkbox to select as h:selectManyCheckbox. Below is what I have as code <h:selectManyCheckbox value="#{UserRegistration.pagesSelected}" ...
7
votes
4answers
1k views

Set background color of every individual checkbox of p:selectManyCheckbox

I am using this http://www.primefaces.org/showcase-labs/ui/selectManyCheckbox.jsf primefaces componenent to get dynamic booleanCheckboxes values <p:selectManyCheckbox ...
0
votes
1answer
1k views

select all p:selectManyCheckbox

I'd like to create a button to select all checkboxes but I couldn't find one example that works for me. I'm using primefaces. <p:selectManyCheckbox widgetVar="sex" id="sexta" ...
0
votes
0answers
165 views

h:selectManyCheckbox in composite component no response

Composite component's code: <cc:interface> <cc:attribute name="value" required="true"/> <cc:attribute name="converter" required="true"/> </cc:interface> ...