Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
554 views

How do I get a selection model to work with a proxy model?

I have a model and two views set up like this: Model ---> OSortFilterProxyModel ---> OListView Model ------------------------------> OTableView When the user selects something in one of ...
2
votes
1answer
266 views

Selection mode in JTable?

I couldn't understand the Difference between multiple_selection_interval and single_interval_selection in JTable.. table.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION); next, is ...
1
vote
1answer
44 views

Jtable which is set to listen cell selection events will not fire events

JTable which is set to listen cell selection events is not generating events when we select from the same row,, if i select other row other than the cell selected, Jtable fires events. this is ...
1
vote
1answer
714 views

Select element in CellList using SelectionModel or ListDataProvider

I have used CellList for listing my data using ListDataProvider for managing the data and SelectionModel for selecting an element from CellList and generating events accordingly. Now when i update or ...
1
vote
1answer
456 views

In GWT-EXT checkboxtree how to handle single selection of tree nodes?

I'm working on checkBoxTree in GWT-EXT 2.0.3 with Java. My aim is to get a selectionModel which allows me to select(check) only one TreeNode at a time. If I select another TreeNode after selecting one ...
0
votes
0answers
23 views

FXML - How to preselect an item in ChoiceBox?

What is the FXML equivalent for this (cb is a ChoiceBox): cb.getSelectionModel().select(1); I tried something like this: <ChoiceBox SelectionModel.select="1"> .... </ChoiceBox> and ...
0
votes
1answer
43 views

Multiple selection and JPopupMenu on right click

I am having problems with a popup menu on a JTable and the fact that this JTable allows for Multiple Interval Selection. I'm going to explain in detail my situation, making it as clear as possible, ...
0
votes
1answer
138 views

Read multiple selection from TableView in JavaFX 2.0

I am trying to get the selection from a TableView in JavaFX 2.0. I have stored 5 Persons (5 rows) in the TableView. The code to get the selection model is: TableView<Person> tableView = ...
0
votes
0answers
106 views

Select All with paginggridscroller in extjs

I am having a problem with a very large grid for which i use the paginggridscroller functionalty. When i press select all it (obviously) cant select records it hasnt loaded so it only selects the ...
0
votes
1answer
236 views

GWT CellTree Selection of Parent nodes

I'm trying to use the GWT CellTree to display a heterogeneous, hierarchical data model. I need to be able to a single selection, but be able to select Parent nodes as well as child nodes. For ...
0
votes
0answers
258 views

GWT: CellTable doesn't select new row after adding it

I have form with text fields, "add new row" button and grid (CellTable) on the same page. When I add new row to the grid (by filling fields and pressing button add) I want to select (highlight) this ...
0
votes
2answers
1k views

Extjs 4.x - CheckboxModel to get checked and unchecked value

I have used check box model in the grid panel. When i checked the check box i am the checked column value. Now what i need is when i unchecked i need to get that same unchecked value. var selModel = ...
0
votes
1answer
235 views

QTableView issue with selectionModel()

I have a problem with my call to QTableView.selectionModel(). I instanciate my QTableView in another class, then when I open a new project and need to fill in my view I call a function fillGrid() in ...
0
votes
1answer
434 views

ExtJs: Programly select rows of a GridPanel in an inactive tab not working?

Basicly, I have a window contains two tabs, the second tab is a GridPanel and is initially inactive. I want to programly select two rows of this GridPanel(via CheckboxSelectionModel) by clicking a ...