I want to add a column with checkbox in qtableview with model is qsqlmodel.The model already had query, and qtableview should display the checkbox in the firstcolumn.I try all the solution in google, but failed.Any help is welcome.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Hello you'll want to do the follow. Set flags Set the flags for the column you want the checkbox to appear in. See this answer for an example of setting the I.e. your model class should override:
to ensure you are returning Return checked state Next you're going to want to modify your model class to override:
to ensure it returns something for Hope that helps! |
|||
|
|