7,923 questions
0
votes
0
answers
15
views
tvOS UITableView shows shadow on top and bottom when manually changing contentOffset
I’m working on a tvOS app using Swift, and I have a UITableView that contains three sections.
For first two sections, each contain a horizontally scrolling UICollectionView.
The last section contains ...
0
votes
0
answers
112
views
Autocompleting TextField inside a TableView?
I'm trying to add autocompletion to a TextField that acts as a data column in a TableView.
In particular, I want to use an Array of String values as suggestions, but not require that the value of the ...
0
votes
0
answers
75
views
Dynamic Cell Height (SwiftUI View in UIKit TableView) Weird Animation
I am attempting to adjust the height of a SwiftUIView when pressing the corresponding button. However, the animation that occurs when the height is adjusted does not align with my desired behavior. ...
1
vote
0
answers
66
views
How do I animate column/row size with Flutter TableView?
Using the package two_dimensional_scrollables I want to expand and animate the size of a specific column when tapping on it. The code below listens to the user action to change the column size and ref....
1
vote
1
answer
89
views
In a TableView, can I format an entire rows cells based on one cell's value?
I have a TableView where I format the cells style based on the value (see code). I'm wondering if there's a way to format the entire row that cell belongs to based on that cells value or the value of ...
0
votes
0
answers
38
views
How can I save an entire TableView to an image in QML
How can I save an entire TableView to an image in QML? I created a basic TableView object tableView. The model of tableView is a C++ instance, and the delegate is a custom QML object. Due to too much ...
0
votes
1
answer
64
views
JavaFX TableView - Scroll Bars and auto resized TableColumns
I am trying to have a TableView with auto resized columns and scroll bars.
The TableView is in my FXML file, and I don't have it wrapped in any pane. I have read that TableView should automatically ...
1
vote
1
answer
82
views
javafx row selected checkbox background color
I'm developing a JavaFX application in which I have a TableView which contains some text and checkbox.
.table-row-cell:selected {
-fx-background-color: rgb(180, 228, 156);
}
.table-row-cell:...
0
votes
1
answer
56
views
Sync UITableView scroll with keyboard appearance
I have a tableView with four cells. Each cell has a UITextView with a long-long text. When user starts to edit text, keyboard appears and the tableView scrolls up. I would like it to happen ...
1
vote
2
answers
244
views
QTableView with stylesheet - indicators overlap text in Qt6
Update: This issue is caused by a Qt bug. They solved it, for release in Qt 6.9.
https://bugreports.qt.io/browse/QTBUG-129290
Original Post: We had to port code to Qt6, and one of the things that ...
0
votes
1
answer
77
views
TableView not updating after adding or updating record in JavaFX
I'm working on a JavaFX application with a TableView for managing employee records. I have an EmployeeRepository class for handling CRUD operations that communicates with "CsvHandler" class ...
0
votes
0
answers
60
views
JavaFX Intermittent Execution Issue
I am experiencing an intermittent issue in my JavaFX application where the casesTableView.getItems().clear() method behaves inconsistently. Initially, it executes correctly, but on subsequent ...
0
votes
1
answer
50
views
iOS - Show header view in 2 tableviews next to each other
I have a view controller that shows two tableViews side by side.
I have also a class (ButtonHeaderFooterView) that extends from UITableViewHeaderFooterView.
I want to show different titles for the ...
1
vote
0
answers
50
views
Java application interface error after building in tableview?
I created a tableview with a feature that automatically wraps text to the next line when Enter is pressed and changes the state of the next row to edit mode using the following code:
Java
this....
-1
votes
2
answers
39
views
TableView AutomaticDemension doesn't work(Swift
I wanted to adjust my tableview cell height, so I wrote this code :
self.tableView.rowHeight = UITableView.automaticDimension
self.tableView.estimatedRowHeight = 200
But it failed due to my poor ...
0
votes
1
answer
426
views
PyQt6 Delegate class to show combo boxes in tableView cells, doesn't update model on selection. It has to be clicked again
I have revised this post in line with comments gratefully received.
I attach a simplified program to demonstrate the problem, and along the way to developing it I found the answer to my initial ...
0
votes
2
answers
71
views
JavaFX TableView populating columns with same value 3 times
I have this bit of code for setting up a TableView
@Override
public void initialize(URL location, ResourceBundle resources){
if(App.Customers.get(App.currentcustomerindex).getAccounts()...
-1
votes
1
answer
65
views
ColletionView inside table view not displaying data correctly
[Edit] If additional information is needed, I will be happy to provide it.
I have a situation that I have thus far been unable to figure out. A Collection View embedded inside of a table view; I am ...
3
votes
0
answers
101
views
NPE for TableCell's skin
I have implemented a TableView in my application. I have created custom skin for the TableCell and initiated the custom skin in the createDefaultSkin() method of the TableCell.
Everything works as ...
0
votes
0
answers
16
views
Multiple collection views in table view layout issue
I have a single table view and it has a 4 sections. Every sections i registered a different collection view cells. In a table view cell, i'm having trouble setting the constraints of collection views ...
-1
votes
1
answer
313
views
Stop tableView scrolling under status bar (Swift 5, Xcode 15)
I have a tableView inside -> navigationViewController -> tabBarController.
The tableView keeps scrolling under the statusBar no matter what I do. I like it to stop underneath the status bar.
...
0
votes
1
answer
273
views
How to force ttkbootstrap TableView column title to always stay right justified
I've created a ttkbootstrap tableview with several columns where one column title/heading is configured to be right justified. When data is loaded the column title/heading is no longer right justified....
0
votes
1
answer
283
views
Unable to .bind("<<TreeviewSelect>>".. to work with TableView to get selected row data
I am trying to get the row data of the selected row in a ttkbootstrap Tableview, and as with tkinter treeview, I've always just used .bind("<>",my_func) and my_func would proceed in ...
1
vote
1
answer
161
views
It is valid Accessing BehaviorRelay value directly for UITableView in RxSwift?
I'm working with RxSwift and have a scenario where I use a BehaviorRelay in my ViewModel to hold an array of data for a UITableView. I've set up a subscription to this BehaviorRelay specifically to ...
-1
votes
1
answer
96
views
TableView error: "attempt to insert row 1 into section 0, but there are only 0 rows in section 0 after the update"
enter image description here
func reloadCellOfTableView(_ tableView: UITableView, cell: UITableViewCell) {
DispatchQueue.main.async {
if let indexPath = tableView.indexPath(for: cell) {
...