如何将持久的Delegate ModelIndex恢复为" normal"

时间:2015-02-03 05:02:56

标签: python qt model pyqt qmodelindex

使用以下代码将委托项设置为持久性后:

tableView.openPersistentEditor(model.index(0, 0))

是否有可能将其恢复为“unpersistent”(犹豫不决)?

1 个答案:

答案 0 :(得分:1)

您可以使用closePersistentEditor关闭给定索引处的持久编辑器:

tableView.closePersistentEditor(model.index(0, 0))