qt tableview如何去除导航

 我来答
某某知识博士
推荐于2016-09-06 · TA获得超过1.4万个赞
知道大有可为答主
回答量:3522
采纳率:85%
帮助的人:1184万
展开全部
QStandardItemModel *model = new QStandardItemModel();
ui->tableView->setModel(model);
.
.
.
int curRow = ui->tableView->currentIndex().row();
model->removeRow(curRow);
视图模型,model实现对数据的操作。
void XXX::DeleteITEM()
{
QItemSelectionModel *selectionModel = table_view->selectionModel();
if (selectionModel->hasSelection()) {
QModelIndexList indexList = selectionModel->selectedIndexes();
QModelIndex index = indexList.at(1); // 第几列
QString strTaskName = index.data().toString();
qDebug() << strTaskName;

} else {
QMessageBox::information(NULL, tr("Information"), tr("not select"));
}
}
void MainWindow::deleteItem()
{

QModelIndex index = treeView->selectionModel()->currentIndex();

treeModel->removeRow(index.row(), index.parent());
}
搞出来了,只是换了种方法

QSqlQuery query;
// query.prepare("delete from student where id = 2");
// query.bindValue(curRow);
int curRow = ui->tableView->currentIndex().row();
QModelIndex index = ui->tableView->currentIndex();

int id=index.sibling(curRow,0).data().toInt();
qDebug("shuzi is %d",id);

query.prepare("delete from information where id = :id");
query.bindValue(":id",id);
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
次迈0O
2015-02-06 · TA获得超过355个赞
知道小有建树答主
回答量:564
采纳率:50%
帮助的人:191万
展开全部
直接删除就好了,
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式