Is there a signal which is emitted when the user selects a row in QTableView by mouse (single selection model)?
Is there a signal which is emitted when the user selects a row in
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Each view has a Selection model :
and with the selection model you can retrieve lots of informations, in your case :
So :
You can then retrieve this informations through a signal like :
Hope it helps !