标签: python qt model pyqt qmodelindex
使用以下代码将委托项设置为持久性后:
tableView.openPersistentEditor(model.index(0, 0))
是否有可能将其恢复为“unpersistent”(犹豫不决)?
答案 0 :(得分:1)
您可以使用closePersistentEditor关闭给定索引处的持久编辑器:
tableView.closePersistentEditor(model.index(0, 0))