tableview Questions
5
On the iPhone there is a text book example of how to delete a tableview row in the Message Apps.
This appears to use three separate views to perform the task.
My question is about whether there ...
9
Solved
I know there's tons of code out there to scroll a tableview to the top, but I want to do this when the top status bar is tapped, just like in Apple's native apps. Is this possible?
Calcific asked 23/8, 2011 at 18:38
1
Solved
I'm currently trying to implement the following:
A TableView with an ObservableList as dataset, with two columns, each of which contains Strings (names of the players). This part is easy enough.
...
2
Solved
I have searched at Google and Stackoverflow for this and I just don't get the given examples. Can someone please explain it to me.
I want to add a button to the last column of a table view and wh...
2
I want to customize the ScrollBar in a TableView.
I am able to customize the ScrollBar in ListView and GridView but I couldn't do the same with the TableView.
I found that this is because GridView...
Mercola asked 16/10, 2017 at 12:55
2
Solved
I have a TableView with a static cell inside which I would like to expand when a button has been pressed. There is a container view inside the cell, the constraints have been set up correctly...
Obtest asked 18/2, 2018 at 17:48
4
Solved
I'd like to create a table with the following features:
Edit on key press
Enter key = next row
Tab key = next column
Escape key = cancel edit
Below is a code which implements these features. Th...
1
Solved
I have a stack view that look like the figure below:
So I change the height of the image programmatically to make it fit the image that download from my server,if dont have image,the height cons...
Dinesen asked 6/1, 2018 at 15:5
3
Is it possible to allow a user to select rows and copy from a TableView?
21
Solved
I have a UITableViewCell which is linked to an object and I need to tell if the cell is visible. From the research I've done, this means I need to somehow access the UITableView that contains it (f...
Ruttish asked 29/3, 2013 at 21:26
4
My question is how to make a new Table in JavaFX with in the first column the index of the tableRow.
So i've created a class: NrCellFactory.
public class NrCellFactory<S, String> extends Ta...
6
I'm using this table to display data in Table View:
import javafx.application.Application;
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.SimpleIntegerProperty;
import ...
3
Solved
I have a tableview. I want some tableview cells with dynamic height while other cells with the fixed height. For dynamic height, I used following lines in my viewDidLoad view controller delegate.
...
Scarlet asked 22/11, 2017 at 20:36
3
Solved
I store strings of a view controller in a string array. I import this string array as a Data Source in my table view. This all works smoothly. But now I would like to sort the table view and add se...
3
Solved
Code and errors
Continued on the code and one more errors!
Hi, I'm new to Xcode swift. I have been doing good so far except trying to follow someone tutorial from 8.2 and I'm getting these errors ...
2
In xcode9.0, I add a tableview to storyboard, when I toggle tableview style to grouped, xcode crash.
2
Solved
I have This tableView Here :
With the default left text alignment which i would like to change to a right text alignment . How can i do this ?
EDIT:
Now it looks like this :
2
Solved
Trying to figure out on how can i disable the reordering of table columns in javafx 2?
3
I'm trying to select multiple rows in JavaFX but I don't want to use keyboard (i.e. SHIFT key) for that. It should be selected after I click on it and when I click on another column it should be se...
2
Solved
In tableview have different section.
Want to add the radio button for all the section.
Each section have individual select and deselect in tableview.
In first section choice1,[show in fig]
Sel...
Pakistan asked 19/8, 2017 at 7:43
2
I am having trouble casting my table view cell to my custom table view cell in the dequeueReusableCell(withIdentifier: for:) step.
My code:
override func tableView(_ tableView: UITableView, cellF...
13
Solved
This started to happen out of the blue. Any ideas: Code:
CUSTOMCLASSNAME (I have replaced the actual class name as it contains the name of the client.)
Initialising my tableView:
[self.tableView...
Miscarry asked 28/8, 2013 at 14:22
1
Solved
What is the best way to make table from ListView?
Say, given a 2d array of strings and delegate for all the columns are Labels. How and when to calculate maximum item width for each column while u...
4
Solved
I am using CollapsibleTableView from here and modified it as per my requirement to achieve collapsible sections. Here is how it looks now.
Since there is a border for my section as per the UI des...
Priestcraft asked 23/6, 2017 at 10:0
1
Solved
What is the difference between tableView.reloadData() and tableView.reloadRows(at: [IndexPath],with: .none)?
I know that cells will reload everything after tableView.reloadData()
I tried ...
Capsulize asked 24/6, 2017 at 8:3
© 2022 - 2024 — McMap. All rights reserved.