1. 程式人生 > >Cuba 獲取DataGrid中的選中值

Cuba 獲取DataGrid中的選中值

1.注入相關的DataGrid,一定是DataGrid,不要注入DataSource。

@Inject
private DataGrid<ManufacturingTool> toolBorrowDataGrid;

2.獲取選中值

//獲得DataGrid的選中值        
Iterator<ManufacturingTool> iterator = toolBorrowDataGrid.getSelected().iterator();
List<ManufacturingTool> manufacturingTools = new ArrayList<>();       
while (iterator.hasNext()){
    manufacturingTools.add(iterator.next());        
}
//遍歷集合
for (ManufacturingTool tool:manufacturingTools) {            
    System.out.println("[編號:"+tool.getCode()+" 名稱:"+tool.getName()+"]");     
}

3.控制檯輸出

相關推薦

Cuba 獲取DataGrid選中

1.注入相關的DataGrid,一定是DataGrid,不要注入DataSource。 @Inject private DataGrid<ManufacturingTool> tool

wpf 獲取datagrid

        public static void SetDataGridCellIsEnabled(DataGrid datagrid, int rowIndex, int[] cellIndexArray, bool IsEnabled)         {      

通過find()方法獲取table選中trinput

點選選中行中其中一個input框,獲取本行中另外一個input欄位值: <input name='' onclick='check(this)'>  function check( o){ //獲取上上級tr 的demo var tr = o.parentNod

jQuery獲取select選中的option的和自定義屬性的

使用jQuery獲取獲取select下拉框中option的值: //通過繫結change事件,當下拉框內容發生變化時事件被啟動 $("#wlms").bind("change",function(

獲取easyui-datagrid選中的資料,並遍歷得到目標資料

//id和title是我想要的資料 var docData = $('#grid').datagrid('getChecked'); var arr = new Array(); for(var

js獲取html下拉框選中的自定義屬性

<select id="city" onchange="city_change(this)""> <option value="1" tag="010">北京</option> <option value="1" tag="02

selenium+java:獲取列表

href word arc 試用 res boolean sent api 斷言 selenium+java:獲取列表中的值 (2011-08-23 17:14:48) 標簽: 雜談 分類: selenium 初步研究利

RootFramework框架實現文件讀取和上傳以及使用JavaScript獲取fields

roo 讀取 frame get .get 轉換 script 輸入 tor 1、項目中使用的相對路徑需要轉換成絕對路徑,(Python方法實現 os.path.abspath(‘path‘)) 2、choose file [locators,file_pat

怎麽獲取textarea選中文字

creat ext document range length .get ring element save textarea設置select="saveSelectionText()" //保存選中內容 saveSelectionText: fu

一般處理 程序獲取Session

session對象 一般處理程序如果沒有引入using System.Web.SessionState;空間和IRequiresSessionState(或者IReadOnlySessionState)接口,那麽會出現session對象未將實例化的錯誤。一般處理 程序中獲取Session中的值?

jQuery獲取radio checkbox選中

通過jQuery獲取radio checkbox選中的值 1、 獲取單選按鈕表單控制元件選中的值: $('input:radio[name="radio01"]:checked').val(); 2、 獲取複選框的值: $('input:checkbox[name="Chec

jq獲取Url

function GetQueryString(name) {    var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");    var r = window.locatio

html之間直接get請求訪問後獲取 url

假如a頁面是被get的頁面  在a頁面中新增如下程式碼: var action = getParameterByUrl(window.location.toString(), "action"); var dts = getParameterByUrl(windo

js獲取url ,並跳轉相應頁面

實現方法:一:獲取URL帶QUESTRING引數的JAVASCRIPT客戶端解決方案,相當於asp的request.querystring,PHP的$_GET1.函式:<Script language="javascript">function GetRequest() {var url = lo

SpringBoot 入門之二:獲取Properties,通過類配置來替代原SpringXML的配和注入方式

•application.properties •application.yml person.last-name=\u674E\u56DB person.age=12 person.birth=2017/12/15 person.boss=false person.maps.k

獲取表格時,空格符也會加進去,導致判斷陣列是否包含列時會返回false

//初始化已選優惠券編碼 var discountTbody=document.getElementById('discountTbody'); var discountRows=discountTbody.rows; var selectCouponList=[]; console.l

jsp用el表示式獲取後臺傳來的,或者獲取session

<script type="text/javascript"> var usernameC = ${sessionScope.SESSION_USER_PROFILE.accountId}; var caseId = "${caseId}"; var taskId =

Java讀js檔案,獲取object

資料 classes=[ { "name":"class1", "student":["joke1","joke2"] },{ "name":"class2", "student":["joke3","joke4"] }] Java讀取資料 /*獲取執

獲取表格時,空格符也會加進去,導致判斷陣列是否獲取會返回false

//初始化已選優惠券編碼 var discountTbody=document.getElementById('discountTbody'); var discountRows=discountTbody.rows; var selectCouponList=[]; con

原生js獲取select標籤選中

this.selectedIndex; // 選中的索引 this.options[_index].text; // 選中的文字 this.options[_index].value; // 選中的值