1. JSF selectItem question stackoverflow.comIs there a way to dynamically create a selectItem list? I dont really want to have to create lots of bean code to make my lists return
| ||||||||||||||||||||||||||||||||||
3. Best Practices with SelectItem icefaces.org | ||||||||||||||||||||||||||||||||||
5. selectonemenu - selectitems are transferred but nothing changed icefaces.org | ||||||||||||||||||||||||||||||||||
6. Formatting of SelectItems icefaces.org | ||||||||||||||||||||||||||||||||||
7. Icon with selectitem on the label icefaces.orgI am using ice:selectOneRadio to output a set of radio buttons However my question is: is it possible to make the labels on the radioButton something other than vanilla text? for example if I do something like | ||||||||||||||||||||||||||||||||||
8. SelectItem Converters icefaces.orgI'm new to icefaces and having some difficulties understanding the best ways to accomplish this task. I have a selectonemenu, I generate SelectItem array from a bunch of objects. like... selectItemList.add(new SelectItem(people[i],people[i].getName()); I set the valueChangeListener on the selectonemenu but when the value changes the event.getNewValue() always just has the string representation of people[i]... Shouldn't I get back the object instance ... | ||||||||||||||||||||||||||||||||||
9. problem with ice:selectOneMenu and f:selectItems tag in request scope icefaces.orgI am new to IceFaces development.My problem is to select the country and state from selectOneMenu if i put my in request scope if i put in session scope it work fine. here is my jsp code Select Country | | Select State | | 10. How to clear the selectItem component into selectManyCheckBox? icefaces.org11. f:selectItems with Groups icefaces.org12. selectOneRadio layout of selectItems icefaces.org13. SelectItem cast Exception while returning an item icefaces.org14. Making selectItem visible icefaces.org15. Autocomplete and reset SelectItems List icefaces.org16. hide f:selectItem on ice:selectOneMenu icefaces.org17. selectItems XSS vulnerability? icefaces.org18. Suppressing the selectItems list when using the dataExporter icefaces.org19. SelectInputText - how to refresh the f:selectItems contents with no match icefaces.orgHi, I followed the tutorial to use selectInputText along with f:selectItems to populate an auto-complete input. It works fine, but there is one issue I have not been able to resolve. If the popup is populated with say 5 items when the user types 'w' and the next character is a, and there is no match with 'wa', the backing bean ... 20. Actions doesn't invoke when i select a SelectItem (need really help) icefaces.org21. problems with ice:panelTab and f:selectItem icefaces.org22. How show error if f:selectItems fails inside paneltab icefaces.org24. Can't set empty labels to selectItems icefaces.org25. SelectItem issue icefaces.orgHi, I am using the selectOneMenu where the SelectItem has a value that is not a String (it is an object I have defined). This doesn't seem to work (in fact nothing works in my app if I do that). After playing with it a little and changing the value of the SelectItems to String type the application works. Is that ... 26. selectOneRadio: title for each selectitem icefaces.org27. | ||||||||||||||||||||||||||||||
28. selectItems validation error icefaces.orgpublic SelectItem[] getCmsListItem() { SelectItem[] cmsListItem = null; try { CmsInfo[] cmsList = /* a method which returns an array of CmsInfo */ cmsListItem = new SelectItem[cmsList.length]; for (int i = 0; i < cmsList.length; i++) { cmsListItem[i] = new SelectItem(cmsList[i], cmsList[i].getName() + " (" + cmsList[i].getUsername() + ")"); } } catch (Exception e) { ... } return cmsListItem; } | ||||||||||||||||||||||||||||||||||
29. how to set different values to f:selectItems icefaces.org | ||||||||||||||||||||||||||||||||||
31. How to have diferent selectItems in each row of a column in a dataTable. icefaces.orgHi all. I have one dataTable whith two columns of type selectOneMenu. I need that when I change the value in the first column, automatically the second column change its select options, but only the selected row, not the entire column. This is because the options in the first column each one have diferents suboptions in the second columns, for example. ... | ||||||||||||||||||||||||||||||||||
32. ice:selectOneMenu not respecting f:selectItem 'itemValue' ? icefaces.orgI have this: Code: | ||||||||||||||||||||||||||||||||||
33. Is it necessary to have more than one selectItem inside ice:selectOneRadio icefaces.orgNo i cant use a check box. Actually the case is, i have a data table where the first column of each row is a radio button. Now at any time, i should allow only one radio button to be selected in the entire data table. but the problem is iam not able to do grouping for the radio buttons, as ... | ||||||||||||||||||||||||||||||||||
34. How to sort a selectItem? icefaces.org | ||||||||||||||||||||||||||||||||||
35. Incremental update of selectItems very slow icefaces.org[window.4yyJ#1.sync-connection] [9800895] : receive [200] OKicefaces-d2d.js (line 18) [window.4yyJ#1] applied update : icefaces-d2d.js (line 18) [window.4yyJ#1] applied update : icefaces-d2d.js (line 18) [window.4yyJ#1] applied update : icefaces-d2d.js (line 18) [window.4yyJ#1] applied ... | ||||||||||||||||||||||||||||||||||
36. List and SelectItems icefaces.orgprivate List | ||||||||||||||||||||||||||||||||||
37. selectItem's disabled property does not work in IE icefaces.orgMy scenario it's a little bit more complex meaning that I have several selectOneMenu components where selection of a selectItem in one of the them triggers enabling or disabling of one or more selectItems in other selectOneMenu components. Enabling and disabling of the items is a much more straightforward implementation and it also allows the user to see other possible available ... |