1. [ICEfaces] Clearing one inputText form when changing radio button selected coderanch.comHi! I have a set of 3 radio buttons (A, B, and C). Like, A="1", B="2", and C="other value". When I select C, it renders a inputText box in front of it, so user can write a value of is choice. The problem is: if the user writes a value on the box, and then changes to A or B, if ... |
2. Radio Button Prblem in Iceface 1.7.2. icefaces.org |
3. radio button, layout: spread, default selection icefaces.orgpublic class Playground { private Boolean[] radioButtons; private String radioString; public Playground() { this.radioButtons = new Boolean[7]; for(int i = 0; i < 7; i++) { this.radioButtons[i] = false; } this.radioString="btn2"; } public String reload() { return "playground"; } public String getRadioButtonString() { String returnString = ""; for(int i = 0; i < 7; i++) { if(radioButtons[i] != null) { returnString ... |
4. Radio Button icefaces.org |
5. How to bind the inputText value and radio button value icefaces.orgHi I am having one form containing 4 inputText fields,selectOneRadio and 4 selectOneMenu fileds.So i have taken those fields in a table.Here my problem is when i am trying to enter the values for the form.after entering the values for 1st and 2nd fields and i am trying to add 3rd field my first filed value is disappearing and even the ... |
6. Make a radio button the default option before page render. icefaces.org |
7. Adding radiobutton to tables icefaces.org |
8. radio button not staying selected icefaces.org |
9. How to format different parts of a radio button label? icefaces.org |
10. icefaces radio button icefaces.org |
11. Radio Button alignment problem icefaces.org |
12. RadioButtons in a Table icefaces.orgShould be doable using panelGrid/dataTable together with selectOneRadio. The trick is to get them grouped by lines. I haven't tried this, but it should be possible. It's easier if the option list is fixed-size and not dynamic - panelGrid. If the list is dynamic, either using a dataTabel or a c:for maybe... Good luck |
13. Actions doesn't work if I have Radio button in Data Table icefaces.org |
14. Checking which radio button is selected icefaces.org |
15. Select a table row using radio button, is it possibile? icefaces.orgHello, I am using IceFaces 1.8 and I have to do the following thing: I have a normal data table, one of the columns of this table contains a radio button and I wish that clicking on this radio button the corresponding row is selected (obtaining the object reference of the collection which generates the row in the table) Is it ... |
17. custom component (radio button) + facelets, not working icefaces.org |
20. RadioButton in DataTable icefaces.org |
21. Radio Button in table icefaces.org |
22. Table with RadioButtons in column icefaces.orgHi, I need a hint to the right direction for the following problem: I have a dataTable which contains a column (the last column...) with one single radiobutton for each row to provide some single row selection for a table's row. Unfortunately (but only because it creates this problem) the first row contains an ice:commandlink to provide some other functionality. Therefore ... |