Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
15 views

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 ...
Pratham Gupta's user avatar
0 votes
0 answers
112 views

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 ...
Robert Fuhrer's user avatar
0 votes
0 answers
75 views

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. ...
Jason's user avatar
  • 1
1 vote
0 answers
66 views

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....
Gabz95's user avatar
  • 21
1 vote
1 answer
89 views

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 ...
M. Rogers's user avatar
  • 399
0 votes
0 answers
38 views

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 ...
h qh's user avatar
  • 1
0 votes
1 answer
64 views

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 ...
Trevor H's user avatar
1 vote
1 answer
82 views

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:...
ltone's user avatar
  • 147
0 votes
1 answer
56 views

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 ...
Shalugin's user avatar
  • 1,224
1 vote
2 answers
244 views

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 ...
Thalia's user avatar
  • 14.8k
0 votes
1 answer
77 views

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 ...
IO DHarby's user avatar
0 votes
0 answers
60 views

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 ...
Krisztofer Török's user avatar
0 votes
1 answer
50 views

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 ...
Felipe Peña's user avatar
  • 2,848
1 vote
0 answers
50 views

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....
PhuongFuk's user avatar
-1 votes
2 answers
39 views

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 ...
Hyein Lee's user avatar
0 votes
1 answer
426 views

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 ...
pete's user avatar
  • 41
0 votes
2 answers
71 views

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()...
Thomas Hutton's user avatar
-1 votes
1 answer
65 views

[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 ...
Douglas W. Palme's user avatar
3 votes
0 answers
101 views

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 ...
Sai Dandem's user avatar
  • 10.7k
0 votes
0 answers
16 views

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 ...
Altan Koray Benli's user avatar
-1 votes
1 answer
313 views

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. ...
S. Gissel's user avatar
  • 2,751
0 votes
1 answer
273 views

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....
dbjock's user avatar
  • 20
0 votes
1 answer
283 views

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 ...
dbjock's user avatar
  • 20
1 vote
1 answer
161 views

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 ...
Popala Kyu's user avatar
-1 votes
1 answer
96 views

enter image description here func reloadCellOfTableView(_ tableView: UITableView, cell: UITableViewCell) { DispatchQueue.main.async { if let indexPath = tableView.indexPath(for: cell) { ...
Tien Ngo Xuan SDC11's user avatar

1
2 3 4 5
159