qabstractitemview

Copy/Paste multiple items from QTableView in pyqt4?

Copy/Paste multiple items from QTableView in pyqt4? Question: We can select multiple items(partial rows and partial columns) from QTableView using self.tableView.setSelectionMode(QAbstractItemView.ExtendedSelection), but after selecting some rows and columns(partial and partial) if I do CTRL+C and paste it in notepad it only pastes one item(one value from the tableView)? My Code: tab_table_view = QtGui.QWidget() self.Tab.insertTab(0, tab_table_view, …

Total answers: 5