1个回答
展开全部
你看这样行么
var sm = new Ext.grid.CheckboxSelectionModel(); //选择模型,定义checkbox选择框,可选项
在做一个按钮
tbar:{
text:'修改',
tooltip:'修改菜单',
iconCls:'viewButton',
handler:modfiy,
disabled:false
},
在写一个modfiy事件
这里的gride.getSelectionModel().hasSelection()就是获取值了
function modfiy(){
if (grid.getSelectionModel().hasSelection()){
var records=grid.getSelectionModel().getSelections();
if(records.length == 1){
var id=records[0].data['id'];
top.ExtModalDialog.show(
"修改菜单",
"sys/menuhandle.servlet?action=modfiy&id="+id,
null,
refresh,
{width:500,height:400}
);
}else{
top.Ext.Msg.alert('提示','请选中一条修改!');
}
}else{
top.Ext.Msg.alert('提示','请选中要操作的记录!');
}
};
表的ID是gride
我试了试可以
var sm = new Ext.grid.CheckboxSelectionModel(); //选择模型,定义checkbox选择框,可选项
在做一个按钮
tbar:{
text:'修改',
tooltip:'修改菜单',
iconCls:'viewButton',
handler:modfiy,
disabled:false
},
在写一个modfiy事件
这里的gride.getSelectionModel().hasSelection()就是获取值了
function modfiy(){
if (grid.getSelectionModel().hasSelection()){
var records=grid.getSelectionModel().getSelections();
if(records.length == 1){
var id=records[0].data['id'];
top.ExtModalDialog.show(
"修改菜单",
"sys/menuhandle.servlet?action=modfiy&id="+id,
null,
refresh,
{width:500,height:400}
);
}else{
top.Ext.Msg.alert('提示','请选中一条修改!');
}
}else{
top.Ext.Msg.alert('提示','请选中要操作的记录!');
}
};
表的ID是gride
我试了试可以
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询