博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
eas之得到当前选中的行id
阅读量:5236 次
发布时间:2019-06-14

本文共 865 字,大约阅读时间需要 2 分钟。

其实有个快捷键:ctrl+shift+C 就可以直接拿到了....

public String[] getSelected(){
checkSelected;
//SelectManager是kdtable中行管理类
ArrayList bolcks=tblMain.getSelectManager().getBlocks();
ArrayList idList=new ArrayList();
Iterator iterator=block.iterator();
while(iterator.hasNext()){
KDTSelectBlock block=(KDTSelectBlock)iterator.next();
int top=block.getTop();
int bottom=block.getBottom();
for(int rowIndex=top;rowIndex<=bottom;rowIndex++){
ICell cell=tbMain.getRow(rowIndex).getCell(getKeyFieldName());//获取指定分录的单元格的对象
if(idList.contains(cell.getValue())){
idList.add(cell.getValue());
}
}
}
String[] listId=null;
if(idList!=null && idList.size()>0){
Iterator iterator=idList.iterator();
listId=new String[idList.Size()];
int index=0;
while(iterator.hasNext()){
listId[index]=(String)iterator.next();
index++;
}
return listId;
}
}

转载于:https://www.cnblogs.com/luojiabao/p/11087773.html

你可能感兴趣的文章
UVA 10976 - Fractions Again?!
查看>>
Dreamweaver cc新版本css单行显示
查看>>
【android】安卓的权限提示及版本相关
查看>>
JavaScript可否多线程? 深入理解JavaScript定时机制
查看>>
IOS基础学习
查看>>
PHP 导出 Excell
查看>>
Java基础教程——网络基础知识
查看>>
自己到底要的是什么
查看>>
Kruskal基础最小生成树
查看>>
ubuntu 14.04 安装搜狗拼音输入法
查看>>
浅谈算法和数据结构: 一 栈和队列
查看>>
Java内部类详解
查看>>
【hdu 1429】胜利大逃亡(续)
查看>>
图论-次短路求法
查看>>
What's New for Visual C# 6.0
查看>>
ExtJs学习笔记之ComboBox组件
查看>>
关于收费软件
查看>>
getopt_long
查看>>
TensorFlow MNIST CNN 代码
查看>>
javascript之Style物
查看>>