1. problem issue in using checkbox in datatable stackoverflow.comHi all I want to use as a column in datateble and I my code is
but ... |
2. Icefaces: Disable validations with checkbox or similar stackoverflow.comI want to disable the required attribute of the inputText, or any other validator, depending on the value of the selectBooleanCheckBox when I click on the Save Button, How I can ... |
3. checkAll Multiple checkbox in datatable IceFaces Components. coderanch.com |
4. selectboolean checkbox icefaces.orgSorry, I clicked submit prematurely ;) ... Do you want to select either value or only one at a time. If you want to select only one, ice:selectOneRadio is your friend (just replace the ice:selectManyCheckbox tag). Otherwise, use the code I already posted. Don't forget to bind your values to backing bean properties (...value="#{bean.property1}" ...). SelectBooleanCheckBox is for .... boolean values. ... |
5. simulate checking a checkbox icefaces.org |
6. ice:checkbox Label is miles away from the checkbox icefaces.org |
7. Formatting the checkboxes icefaces.orgHi I am using |
8. Not able to include a checkbox in datatable ? Plz help me icefaces.org |
9. 'Select Page' Checkbox updating data table icefaces.orgHi, I am trying to do the following using iceface 1.7.0. I am trying to implement a 'Select Page' checkbox in conjunction with a datatable. Each row in the datatable contains a selectBooleanCheckBox. So when the select all check box is selected the rows in the table are then set to be selected. The select page is implemented as follows: |
10. Tree with checkboxes. UI backing bean problem icefaces.orgHi, I saw a post recently that said if you use ice:setEventPhase to change the event phase instead of doing this in the listener, the method would be run on the correct node, so this is a lot easier than caching the current node when the listener first runs... I haven't personally tested this though. Regards, Radu |
11. Problem with header checkbox in data table. icefaces.org |
12. Sort selected check boxes in a data table icefaces.orgHi All, Please help me to solve a problem. I have a data table and first column of the data table contains check boxes (Boolean value). my data table supports sorting. when I sort the based on the 1st column, objects(data) are sorted but the selected check boxes remain same(mean in previously selected state). my requirement is that, all selected check ... |
13. Performace issue with a datatable 50 rows x 16 checkboxes icefaces.org |
14. Heavy problems with checkbox and dragging in tree icefaces.org |
15. activate checkboxes through java code icefaces.org |
16. Dynamically include checkboxes in datatable icefaces.org |
18. icefaces check box issues icefaces.org |
19. Checkboxes for each column of a dinamically generated ice:dataTable icefaces.org |
20. How to thwart a checkbox toggle icefaces.org |
21. need help (tristate checkbox) icefaces.org |
22. DataTable CheckBox! icefaces.orgIf you are not selecting the checkboxes seperately, you should be able to bind them to a boolean value. Checking one would then select all of them. I think. If you want to select checkboxes seperately and a select all, as long as each Object in your list of values has a boolean attribute, bind each one of those to each ... |
23. checkbox very slow icefaces.org |
24. Put a check box into table icefaces.org |
25. Help: tree component with checkbox icefaces.orgI have seen several questions regarding using the tree component with checkboxes. The only answer I see is to use images. If anyone has an sample code or guidelines on using selectManyCheckbox with layout spread or selectCheckBox I would greatly appreciate it. I have tried but cannot get it to work. Our trees have many nodes so rendering images seems like ... |
27. How to render DataTable column as checkbox icefaces.org |
28. Multi-row selector on datatable with checkBox doesn't work properly icefaces.org |
29. indexed list with checkboxes icefaces.org |
30. Datatable with checkboxes icefaces.org |
31. Issue with CheckBox Inside a DataTable icefaces.orgHello everybody. I am having some issues with a checkbox inside a DataTable, and would appreciate some advice. The checkbox has a value change Listener and is supposed to change the Boolean value when its selection status changes visually but that behavior is not working.it does Nothing. Something interesting is if I put another checkbox outside DataTable it is able to ... |
32. How to validate checkbox with submit button icefaces.org |
33. about checkbox icefaces.org |
34. Problem with checkbox in datatable and inputFile icefaces.orgHi!!, I have a problem with a checkbox in a datatable. Sampling data from a file that is loaded from an ice: inputFile in a datatable. One of the fields in the table is an ice: selectBooleanCheckbox which is controlled by a boolean property: id="checkEnvio" |
35. Disable validation using a checkbox icefaces.orgHello. I have this problem. |
37. How to get the label of selected checkbox ? icefaces.org |
38. checkbox within dataTable icefaces.orgHello, since it is not possible to use the rowSelector and SelectOneBox in the dataTable, i have decided to use the checkbox to select the row which i want to modify. To do this i have the following code in the jspx file: |
39. checkbox for each table row icefaces.org |
41. automatic reset of check box icefaces.org |
42. Multi checkbox icefaces.org |
43. Datatable checkbox icefaces.orgIt's not difficult at all! You just add a boolean value to your beans from the list rendered in the dataTable, and a column which includes just the |
44. checkbox with immediate icefaces.org |
45. component instance binding question(dynamic number of checkboxes) icefaces.orgI am trying the extend the checkbox functionality in the timzone4 application. Instead of having a static number of checkbox I have a dynamic set of checkboxes. And when a checkbox is clicked it needs to add a corresponding row on the table. For this, each dynamically created checkbox should have a different id(id=) so that on the valueChangeEvent can identify ... |
46. Data table with checkboxes icefaces.org |
47. programmatically uncheck checkboxes in a datatable icefaces.org |
48. Check box in icefaces icefaces.org |
49. Grouping the checkboxes icefaces.org |
50. When last checkbox selected then all nodes getting selected icefaces.org |
51. Disabling a checkbox icefaces.org |
52. How to stop datatable from reloading when I click a checkbox or row selection icefaces.orgHi fellow members, I have a datatable which has a column for checkbox and row selector functionalities. After some "investigation" of the datatable, it seems whenever I click on the checkbox or row selection, the binding values will be set according but then the entire backing bean of the datatable will be re-initialized... This causes all the values to be reset... ... |
53. checkbox select all icefaces.orgdavisoski wrote: Hi radu I'm interested in doing the same but to select all the elements in a selectManyListBox..but what it mean exactly your code. I don't use this kind of things in my code and I don't know if it necessary. Could you please explain what the code means?? Thanks That code is useful for when you have ... |
54. refresh table with checkbox icefaces.orgpublic void buscaRutinas(RowSelectorEvent event){ this.setBotonConfirma(Constante.DESACTIVAR); for(int i = 0; i < this.modulos.length;i++){ if(modulos[i].isMarcado()){ //modulo actual currentModulo = modulos[i]; if(modulos[i].getProgramasList().size() > 0){ //programa actual currentPrograma = (Programa)modulos[i].getProgramasList().get(0); rutinas = new Rutina[((Programa)modulos[i].getProgramasList().get(0)).getRutinaList().size()]; ((Programa)modulos[i].getProgramasList().get(0)).getRutinaList().toArray(rutinas); for(int j = 0; j < rutinas.length;j++){ System.out.println(""); DetalleAcceso aux = new DetalleAcceso( modulos[i].getIdModulo(), ((Programa)modulos[i].getProgramasList().get(0)).getIdPrograma(), rutinas[j].getIdRutina(), //this.currentUsuario.getId_usuario()); 1); for(DetalleAcceso da : detalleAcceso){ if(da.equals(aux)){ rutinas[j].setMarcado(true); } } } //rutinas } else ... |
55. Rowselector and checkbox icefaces.orgHi, I have checkboxes in the first column of a datatable (see screenshot) and one can click on a row to open the associated document. All works fine, but the problem is that there is space around the checkboxes : when the user does not click exactly on the checkbox, the document is opened... I saw http://jira.icefaces.org/browse/ICE-2466 but it is marked ... |
56. Display list of checkbox to one after the other icefaces.org |
57. checkbox size not the same icefaces.org |