求助Bootstrap table,根据行数据选中行~ 求助
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求助Bootstrap table,根据行数据选中行~ 求助相关的知识,希望对你有一定的参考价值。
就是要根据44,45选中表中的这两行,不知道怎么根据44,45找到表中这两行
就是要选中部门id为44、45这两行 ,怎么选中 用的Bootstrap这个框架
QTableView 获取选中行内容并赋值给另一个tableview的问题,求QT高手解救。。。
我做了一个界面,有两个tableview,想获取其中一个tableview中选中行的内容,然后把选中行赋值给另一个tableview,总是只取到第一列数据,困惑中,摸索不出来了。。。求高手解救。。。主要代码如下:QItemSelectionModel *selectionModel =ui->tableView_2->selectionModel(); QModelIndexList indexes = selectionModel->selectedIndexes(); QModelIndex index; QStandardItem *newItem=0; if(indexes.count()==0) QMessageBox::warning(this,tr("添加子节点"),tr("请选择要添加的节点!"), QMessageBox::Ok); else if(indexes.count()!=4) QMessageBox::warning(this,tr("添加子节点"),tr("每次只能添加一个节点!"), QMessageBox::Ok); else foreach(index, indexes) int col=index.column(); newItem = new QStandardItem(index.data().toString()); model->setItem(row,col,newItem); model->setHeaderData(0, Qt::Horizontal, tr("长地址")); model->setHeaderData(1, Qt::Horizontal, tr("名称")); model->setHeaderData(2, Qt::Horizontal, tr("网络号")); model->setHeaderData(3, Qt::Horizontal, tr("短地址")); ui->tableView->setModel(model); 其中model 是一个QStandardItemModel,row是model也就是tableview的现有行数
参考技术A 你直接用model->appendRow(newitem)添加试试;以上是关于求助Bootstrap table,根据行数据选中行~ 求助的主要内容,如果未能解决你的问题,请参考以下文章
求助,怎么通过js获取slickgrid表格中的行数,选中行和一行中的数据
在使用bootstrap-table时,怎么获取选择行的内容?
求助:Web Dynpro for ABAP的Table如何得到被选中的多行