easyui linkbutton 위에서 아래로 자유롭게 선택
2250 단어 easyui
// begin
$(function(){
// PRODUCT_ID LINKBUTTON
$("#btnEdit").click(function(){
var procudut_id = [];
var rows = $('#guestDatagridEdit').datagrid('getSelections');// datagrid
if(rows!=null&&rows!=""){
for(var i=0; i<rows.length; i++){
index++;
var row = rows[i];
procudut_id.push(row.name);
map_idtoproduct.put(row.name,row.obid);
selection_id.push(row.obid);
var btnid = "btn_" + index;
var linkButton = "<a id ="+btnid+" class ='lbt'></a>";
$('#link_button_areaEdit').append(linkButton);
$("#"+btnid).linkbutton({
iconCls : 'icon-search',
text : procudut_id[i]
});
}
}
for(var i=0; i<map_idtoproduct.length; i++){// ajax map
index++;
var row = map_idtoproduct[i];
procudut_id.push(row.key);
map_idtoproduct.put(row.key,row.value);
selection_id.push(row.value);
var btnid = "btn_" + index;
var linkButton = "<a id ="+btnid+" class ='lbt'></a>";
$('#link_button_areaEdit').append(linkButton);
$("#"+btnid).linkbutton({
iconCls : 'icon-search',
text : procudut_id[i]
});
}
})
var length = 0;
$(".2bt").live("click", function(){
var v = $(this).attr('id');
var product_name = $(this).text();
linkbutton_id[length] = map_idtoproduct.get(product_name);
$.messager.confirm(' ', ' '+product_name+'?', function(r) {
if (r) {
//alert(map_idtoproduct.get(product_name) + "12w3");
click_remove.push(map_idtoproduct.get(product_name));// Id
$('#'+v).remove();
}else{
return;
}
});
length++;
})
})
// end
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
EasyUI 생성 트리, 탭 열기 클릭텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.