tableview Questions

3

Solved

I have a list of accounts in a TableView. After I press a button, an item is deleted. So far so good. How to refresh tableView after deletion? Please find the below screenshot for more informatio...
Tamishatamma asked 29/3, 2016 at 9:7

2

Solved

Is there any way that I can make simple Accordion View in swift like the one at Calendar Event Create? I don't want to use other third party library as well as other code. I found many answer at g...
Destructor asked 14/2, 2016 at 16:35

4

Solved

I have a read-only TableView in JavaFX 8, and I don't want' the users to select rows. They should still be able to sort the columns and scroll, just not to select any rows. How can I achieve this? ...
Rickard asked 8/12, 2014 at 8:31

1

Solved

I would like to create a TableView. In my .fxml controller, I have these two columns: @FXML private TableColumn<Log, String> planeRegistrationColumn; @FXML private TableColumn<Log, Strin...
Shipyard asked 21/2, 2016 at 10:2

4

I'm trying to delete or hide a section inside a tableview with static cells on it. I am trying to hide it in function viewDidLoad. Here is the code: - (void)viewDidLoad { [super viewDidLoad]; [s...
Cahoon asked 15/12, 2011 at 9:57

2

Solved

Data Model class DataImage { var userId: String var value: Double var photo: UIImage? var croppedPhoto: UIImage? init(userId:String, value: Double, photo: UIImage?, croppedPhoto: UIImage?){ ...
Iives asked 21/1, 2016 at 4:24

2

I would like to know more about how to practically use or subclass (if necessary) CheckBoxTableCell. There is one specific case I would like to use this class, whereby the check box doesn't bind to...
Glynis asked 21/8, 2014 at 6:41

1

Solved

(Following this question, this is what prompted it) I have a model class with a LongProperty: public class Model { private final SimpleLongProperty number = new SimpleLongProperty(this, "numbe...
Steiner asked 5/1, 2016 at 21:24

0

Update Attached a sample code that shows the problem. I noticed that it happens when: The tableview inside a grid pane with another control (say Combobox), so the tableview headers is aligned wit...
Cephalonia asked 23/12, 2015 at 16:24

2

Solved

Trying to work out a couple of scenes in my app my I cant get the tableViews to work as they should. Im doing a settings like tableView where the user choses between two possible settings. Each op...
Fumigant asked 10/12, 2015 at 14:16

1

Solved

I have tableView (A) responsible for listing items CoreData and viewController (B) to add new item. To create a ViewController (B) custom, they chose to use the following Present Modally to use pre...
Neves asked 16/10, 2015 at 2:7

2

Solved

When using a TableView in JavaFX 2, there seems to be magically one column added instead of resizing the existing ones. Please see the following screenshot. What I would expect/want: Both column ...
Yser asked 17/10, 2012 at 12:4

3

Solved

I have UITextFields in tableviewcells. When you swipe over the cell not part of the textfield, the delete action comes up as expected. If you swipe over the textfield, it stops the delete from popp...
Somnambulation asked 25/9, 2013 at 22:34

1

Solved

I am building on Java FX application 3 weeks now and i have a problem i search things about that over the internet but i can't find the solution. I have to Populate Data on rows in a tableview i am...
Cyclorama asked 14/11, 2015 at 19:21

4

Solved

I'm new to iOS development, so go easy on me please :) Using Xcode 4.2 for iOS 5, I've built a view controller in IB, with a tableview inside it linked to a detail view controller through a push s...
Germanize asked 28/10, 2011 at 15:7

6

Solved

After doing a Oracle tutorial about the TableView, I was wondering if there's a way to programmatically apply different CSS style to the selected TableView row. For example, user selects a certain ...
Hardening asked 3/12, 2013 at 11:37

2

Solved

I have a dynamic tableview and a prototype cell which displays an array. My questions is how would I add a button which displays different names on each cell to the Left side of the cell and then a...
Tot asked 10/10, 2015 at 11:19

2

Solved

How do I set a selection in a TableView? I want the first index selected by default. productTable.selectionModelProperty().set(value); Is this right? What should value be?
Sherylsheryle asked 15/1, 2013 at 13:5

1

Solved

No matter what i do - the color of the row keeps unchanged and has a greyish color. The changes only work for when the TableView is in focus. I have tried every other suggestion i found online, fo...
Around asked 8/9, 2015 at 11:43

5

Solved

Given a TableView, i need to detect the doubleclick on a cell. tableView.setOnMouseClicked(new EventHandler<MouseEvent>() { @Override public void handle(MouseEvent event) { if(event.get...
Histrionic asked 19/9, 2012 at 16:48

1

Solved

I'm working on a java project using Eclipse, javaFX, TableView.. My application is available in three languagues and user can change it from the Setting corner in the app and everything goes right,...
Cauterant asked 5/9, 2015 at 23:39

3

Solved

I have been trying to figure out how to auto-size TreeView columns to fit their content for a while now. This has been asked before, but the response was minimal and not acceptable. [javafx column...
Jasonjasper asked 14/5, 2014 at 13:41

1

Solved

I have TableView with 5 TableColumn. One of these columns represent color of culture on the map. colorColumn.setCellValueFactory(cellData -> { return new SimpleObjectProperty<Culture>(...
Jewelfish asked 22/8, 2015 at 10:0

1

Solved

This question is related to this. Now I want to colour the row where field value equals to some value. @FXML private TableView<FaDeal> tv_mm_view; @FXML private TableColumn<FaDeal, S...
Overword asked 20/8, 2015 at 13:15

2

Solved

I've a TableView (located inside a ScrollPane), one of the rows is as follows: tc_proj_amount.setCellValueFactory(cellData -> new SimpleStringProperty(cellData.getValue().getBalance().toPlain...
Anglian asked 19/8, 2015 at 6:28

© 2022 - 2024 — McMap. All rights reserved.