Python Forum
[PyQt] [Solved]How to check if row is selected and grab Name from row
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[PyQt] [Solved]How to check if row is selected and grab Name from row
#4
If you want to select a whole row, use SelectionBehavior

        self.InventoryDisplay = QTableView()
        self.InventoryDisplay.setSelectionBehavior(1)
0 Selecting single items.
1 Selecting only rows.
2 Selecting only columns.
Reply


Messages In This Thread
RE: How to check if row is selected and grab Name from row - by Axel_Erfurt - Jun-07-2022, 07:53 AM

Forum Jump:

User Panel Messages

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