Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
43 views

Given this code: import QtQuick import Qt.labs.qmlmodels Window { width: 640; height: 480; visible: true; color: "silver" FocusScope { id: bottomScope anchors....
avb's user avatar
  • 1,783
0 votes
0 answers
21 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
1 vote
1 answer
59 views

I'm using Qt Quick (Qt 6.8) with a TableView and a HorizontalHeaderView. I’ve set up syncView so that the header and table should stay in sync: HorizontalHeaderView { id: header Layout....
Aleksey Kontsevich's user avatar
0 votes
0 answers
118 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
2 votes
0 answers
69 views

I am using JavaFX and I encountered one problem in my TableView. I have a column which shows 0 or 1, how can I change it into showing an image instead of numbers? If value is 0 I want to show image ...
joe's user avatar
  • 29
0 votes
0 answers
78 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
4 votes
1 answer
117 views

I'm new. Let's say I want to create a TableView dynamically based on someString with a query like this: TableView<???> table = new TableView<>(); ResultSet rs = statement.executeQuery(&...
Envy's user avatar
  • 43
1 vote
0 answers
73 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
0 votes
1 answer
576 views

I have this bit of code to draw a line on the upper border of specific row in a treeview: class TextValidatorDelegate(QStyledItemDelegate): """a delegate to validate user input&...
Eric Bayard's user avatar
1 vote
1 answer
93 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
1 vote
1 answer
199 views

I have a SwiftUI Table on macOS. (I'm NOT using a List.) I want it to behave the same as a Cocoa table: when a user clicks on a row, focus should shift to the table AND the clicked row should be ...
Nick K9's user avatar
  • 4,808
0 votes
0 answers
43 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
2 answers
88 views

I’m trying to design a UITableViewCell with XIB that has the following layout and behavior: A UIView on the left with a fixed size of 44x44. A UILabel next to it, which expands dynamically based on ...
Hakan Or's user avatar
0 votes
1 answer
67 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
0 votes
2 answers
65 views

I develop both android(Java) and IOS(swift) applications. I had a problem on the Android side and I solved it.I'm having the same problem on the IOS side but I couldn't solve it. I have a tableview in ...
yhackup's user avatar
  • 372
1 vote
1 answer
89 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
43 views

quantityTextfields are getting ghost values (values that are not putted by user in text field) Even when only one text field is changed, I think this is because how TableView Cells are reused, but how ...
Varun Sharma's user avatar
0 votes
1 answer
57 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
-3 votes
1 answer
53 views

I have a simple struct that I group and insert into a tableview with the title of sections and cell. I would like to get the indexes from the data for IndexPath(row: , section: ), which I then want to ...
TaTechnika's user avatar
1 vote
2 answers
253 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
2 votes
1 answer
106 views

I have a TableView which shows in a column in each TableCell a ComboBox with inside a Pane with each a CheckBox and a Label. When I check e.g. the first CheckBox or any other and scroll down a bit ...
RobRoy's user avatar
  • 49
0 votes
1 answer
85 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
1 vote
1 answer
78 views

I'm trying to retrieve the widthProperty of my parent column to assign it to my label but I can't. Without Split Column is ok And with Split column widthProperty not working I manage to recover ...
Abdel BenMitnicK's user avatar
0 votes
0 answers
66 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
1 vote
0 answers
79 views

I'm encountering an NSInternalInconsistencyException when trying to dequeue custom cells designed in XIB files in my main storyboard. The error message is: unable to dequeue a cell with identifier ...
bumblebee's user avatar
0 votes
1 answer
52 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
2 votes
1 answer
107 views

I couldn't find a way to style (set the background color) of the filler column area that appears when the (vertical) scrollbar spawns. I am talking about this part: It should be possible with either ...
SquidXTV's user avatar
  • 161
1 vote
0 answers
54 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
0 votes
1 answer
60 views

I have the next function: tableSoldCoffees.setRowFactory(typesOfCoffeesTableView -> new TableRow<TypesOfCoffees>() { @Override protected void updateItem(TypesOfCoffees ...
GekaCool's user avatar
-1 votes
2 answers
47 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
53 views

I have a table view populated with persons. Only one person (Jane) gets a button in column "Actions". When double clicking on the column header to trigger the column auto fit the button ...
JTfx's user avatar
  • 45
0 votes
1 answer
435 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
1 answer
53 views

I'm working on a mini project for warehouse management, and I need to manage the available quantity of items. Sometimes articles can be composed (made up of one or more different articles), which in ...
Dulmax's user avatar
  • 21
0 votes
2 answers
72 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
0 votes
1 answer
79 views

If I try to hide a row with evrencoskun's TableView, but have not called setRowHeadItems (because my table doesn't have row labels) then my app crashes: FATAL EXCEPTION: main Process: com.example.app, ...
incarnadine's user avatar
-1 votes
1 answer
67 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
1 answer
44 views

I have a TableView that the user can sort by any of its columns. Depending on other events in the app, I want to add data to the TableView. However, when I add the data, the new row always appears on ...
vatbub's user avatar
  • 3,196
3 votes
0 answers
105 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
1 answer
129 views

I would like to implement a solution that avoids the PropertyValueFactory and also be able to reference all the class's properties in the TableCell updateItem method not just the bound property ...
blm99's user avatar
  • 87
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 vote
1 answer
122 views

I want to change the default behavior with a custom css for the header text positioning. However, it must be possible to change the positioning of individual columns. However, it does not work. My new ...
Guido Leibbrand's user avatar
-1 votes
1 answer
321 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,761
0 votes
1 answer
88 views

I have a sudoku grid, and I want to validate it so that a number cannot be entered in the same row and column. If this happens, I want the message dialog box to open. I have the function verif_complet ...
Victoria Vega's user avatar
0 votes
1 answer
281 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
81 views

I have a TableView that has a Sudoku grid in it. I wanted to validate it so that a number cannot be placed in the same row or column using a c++ functions. When the user enters an invalid number it ...
Victoria Vega's user avatar
0 votes
1 answer
289 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
0 votes
1 answer
164 views

I have the following TableView and was passed to QML via a C++ QAbstractTableModel and I want to make the cells editable pressing the enter key and after that the cells cannot be edited anymore. How ...
Arlyn Annie's user avatar
1 vote
1 answer
165 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 vote
1 answer
480 views

This question is not a duplicate of How can I set the row height in Tkinter TreeView? because I am asking about ttkboostrap.tableview.Tableview and not tk.Treeview. The Treeview solutions do not work ...
Daba's user avatar
  • 11
-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