Questions tagged [dropdownchoice]
78 questions
0
votes
0 answers
Add DropDownChoice to a DropDownChoice
Is it possible in the Apache Wicket Framework to add a DropDownChoice to another DropDownChoice?
For example:
Main-Dropdown
First-Subdropdown
Second-Subdropdown
I have to categorize my values, that's why I have to do that. Otherwise its not…

Christian
- 22,585
- 9
- 80
- 106
0
votes
2 answers
How to bind items in a wx.Choice component to functions?
I am trying to use wx.Choice component to archieve a simple application.
The idea is, a number of items are listed in the wx.Choice, and each of them will trigger an unique function.
My first version of code was:
class MainFrame(wx.Frame):
def…

ChangeMyName
- 7,018
- 14
- 56
- 93
0
votes
1 answer
Wicket AutoCompleteTextField resizing modal window issue
I am using a AutoCompleteTextField from Wicket inside of a modal window. The problem is I have it near the bottom of the window, along with a dropdownChoice.
When I select the dropDownChoice, and if it is near the top, the drop down choice will drop…

eaglei22
- 2,589
- 1
- 38
- 53
0
votes
2 answers
Wicket DropDownChoice Format
Whenever I do something like someString = object().name + " / " object2().name; in the toString() of an object, and load the array of objects into a wicket dropDownChoice, the dropDownChoice disregards the spacing of the strings.. So I'd rather…

eaglei22
- 2,589
- 1
- 38
- 53
0
votes
1 answer
Wicket DropDownChoice Integer
I have problem with Wicket DropDownChoice. The DropDownChoice does not show values for Integer.
wicket version: 1.5.7
DropDownChoice rEvalFormVersion = new DropDownChoice("evalForm.version", EVAL_FORM_VERSIONS);
where…

user2645194
- 1
- 2
0
votes
3 answers
Wicket custom filter without dropdown table
I want to create a custom filter for my DataTable. I would like to create a button that, when clicked on it, changes the table its data. I know about the ChoiceFilteredPropertyColumn that wicket has to offer but this is, according to my…

Bram
- 4,533
- 6
- 29
- 41
0
votes
3 answers
DropDownChoice wicket get value
so I have my DropDownChoice in Wicket:
final DropDownChoice drop_down_status = new DropDownChoice("status", new PropertyModel(this,"selected_status"), STATUS_LIST);
form.add(drop_down_status);
How to get the selected value? I…

SSV
- 860
- 3
- 11
- 25
0
votes
2 answers
DropDownChoice gets duplicate choices
i have an issue with a DropDownChoice (the DDC) component. The situation is as following: I want to create a simple registry page for a contest. So i need a team with participants. I have created a form (which is a composition of different…

anothernoc
- 177
- 1
- 2
- 10
0
votes
1 answer
Wicket ListView - refresh dropdownchoice via text field
I have created a list view which will show number of records in table view and inside the listview contains a textfield and a dropdownchoice field.
What I need to achieve is onchange of the textfield to default the value in the dropdownchoice for a…

sschong
- 13
- 3
0
votes
1 answer
DropDownChoice does not display the selected value
I have a DropDownChoice box that loads a list of values on load(), but when I select a value from the list, the selected value does not show up in the box, even though it appears that getModelObject() does retrieve and return the correct value (the…

shimin q
- 41
- 2
0
votes
1 answer
overwrite selection of DropDownChoice in Wicket
I have an issue with the way Wicket searches for the selection for a DropDownChoice in a Model.
Example
//User Bean
public class Users {
private Long language_id;
public Long getLanguage_id() {
return language_id;
}
public void…

seba.wagner
- 3,800
- 4
- 28
- 52
0
votes
4 answers
Wicket - DropDownChoice POJO to Property Model
Little problem with DropDownChoice.
I build a DropDownChoice with a list of Object.
Take for example:
public MyClass
private String code;
private String description;
[...]
than take another Object
public FormModelObject
private String…

MrMime
- 665
- 4
- 10
- 24
0
votes
1 answer
Wicket - DropDownChoice from Enum to Primitive
Im having some problem with DropDownChoice.
I have an Enum with a list of school title like:
public enum StudyTitle {
NONE(null,null),ELEMENTARY("1","Elementary"),COLLEGE("2","College");
private String code;
private String…

MrMime
- 665
- 4
- 10
- 24
0
votes
3 answers
Apache wicket - DropDownChioce.onSelectionChanged() does not work
I recently started using wicket. I tried to use in your project example "Linked select boxes" from the book "Apache wicket by Vaynberg".
I recreated the example from the book:
public class LinkedSelectboxesPage extends WebPage {
private Country…

bezdelnick665
- 11
- 1
- 2
0
votes
1 answer
Problems od special characters with sfWidgetFormDoctrineChoice in Symfony
I'm using sfWidgetFormDoctrineChoice to get a list of languages from a MySql database. The list is in spanish language. All languages with special characters like for ex. Árabe looks OK (it got the tilde), but I'm getting the wrong representation…

Academia
- 3,984
- 6
- 32
- 49