Python Forum
[PyQt] QTableView: scroll to top cell of the screen
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[PyQt] QTableView: scroll to top cell of the screen
#2
You can do something like that, but it woks only using Ctrl+Down Key

It scrolls selected row to top

class Table(PyQt5.QtWidgets.QTableView):
     
    def __init__(self):
        super().__init__()
        self.rownum = 200
        self.colnum = 10
        self.y = []
        self.delegate = TableDelegate()
        self.setItemDelegate(self.delegate)
        self.vscroll = self.verticalScrollBar()
        self.set_row_height()   

    def keyPressEvent(self, event):
        if event.key() == PyQt5.QtCore.Qt.Key_Down:
            print("down key")
            index = self.currentIndex()
            self.scrollTo(index, PyQt5.QtWidgets.QAbstractItemView.PositionAtTop)
        super().keyPressEvent(event)

....
random_nick likes this post
Reply


Messages In This Thread
RE: QTableView: scroll to top cell of the screen - by Axel_Erfurt - Oct-07-2022, 09:42 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [PyQt] PyQt5 QTableView SQLite : edit cell HeinKurz 2 2,618 Mar-27-2023, 10:41 AM
Last Post: HeinKurz
  [PyQt] QStyledItemDelegate and QTableView malonn 1 1,751 Feb-07-2023, 07:15 PM
Last Post: malonn
  [PyQt] QTableView set header labels HeinKurz 2 7,529 Jan-23-2023, 08:46 AM
Last Post: HeinKurz
  [PyQt] Determine whether text in QTableView cell is fully visible or not random_nick 0 1,071 Oct-27-2022, 09:29 PM
Last Post: random_nick
  [PyQt] [Solved]Add a Blank Row To QTableView Extra 3 5,936 Oct-02-2022, 04:53 PM
Last Post: Extra
  How to update the list of a combo box in a QTableView panoss 10 6,487 Feb-05-2022, 03:24 PM
Last Post: panoss
  [PyQt] How do I get a QScrollArea to scroll? LavaCreeperKing 9 8,236 Oct-29-2021, 08:33 AM
Last Post: Axel_Erfurt
  [PyQt] How to Copy-Paste a table from Office apps to QTableView? Vittorio 5 7,502 Aug-05-2021, 11:14 AM
Last Post: Axel_Erfurt
  Treeview scroll selected node to top rfresh737 1 2,821 Apr-14-2021, 03:27 AM
Last Post: deanhystad
  [Tkinter] canvas widget scroll issue chrisdb 2 4,034 Apr-07-2021, 05:48 AM
Last Post: chrisdb

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020