我有一个dojox.grid.DataGrid
. 在此显示一组值以及填充的最后 2 列,这些列是根据使用属性buttons
从数据库中检索到的数据动态创建的。现在我的网格很好。按钮也很好。我现在需要做的是,当我单击该按钮单击事件上的特定按钮时,我将其重定向到一个新 URL,其中特定值(A)作为该 URL 中的查询字符串参数传递。而且我不希望我的页面被刷新。就像单击按钮时,它会在其他 JSP 页面上执行操作并显示消息。formatter
gridStruture
alert("Action is being performed")
我为我的数据网格编码的java脚本代码::
<script type="text/javascript">
function getInfoFromServer(){
$.get("http://localhost:8080/2_8_2012/jsp/GetJson.jsp?random=" + new Date().getTime(), function (result) {
success:postToPage(result),
alert('Load was performed.');
},"json");
}
function postToPage(data){
alert(data);
var storedata = {
identifier:"ActID",
items: data
};
alert(storedata);
var store1 = new dojo.data.ItemFileWriteStore({data: storedata}) ;
var gridStructure =[[
{ field: "ActID",
name: "Activity ID",
classes:"firstName"
},
{
field: "Assigned To",
name: "Assigned To",
classes: "firstName"
},
{ field: "Activity Type",
name: "Activity Type",
classes:"firstName"
},
{
field: "Status",
name: "Status",
classes: "firstName"
},
{
field: "Assigned Date",
name: "Assigned Date",
classes: "firstName"
},
{
field: "Assigned Time",
name: "Assigned Time",
classes: "firstName"
},
{
field: "Email",
name: "Send Mail",
formatter: sendmail,
classes: "firstName"
},
{
field: "ActID",
name: "Delete",
formatter: deleteact,
classes: "firstName"
}
]
];
//var grid = dijit.byId("gridDiv");
//grid.setStore(store1);
var grid = new dojox.grid.DataGrid({
store: store1,
structure: gridStructure,
rowSelector: '30px',
selectionMode: "single",
autoHeight:true,
columnReordering:true
},'gridDiv');
grid.startup();
dojo.connect(grid, "onRowClick", grid, function(){
var items = grid.selection.getSelected();
dojo.forEach(items, function(item){
var v = grid.store.getValue(item, "ActID");
getdetailsfordialog(v);
function showDialog() {
dojo.require('dijit.Tooltip');
dijit.byId("terms").show();
}
showDialog();
}, grid);
});
}
function sendmail(item) {
alert(item);
return "<button onclick=http://localhost:8080/2_8_2012/jsp/SendMailReminder.jsp?Send Mail="+item+"'\">Send Mail</button>";
}
function deleteact(item) {
alert(item);
return "<button onclick=http://localhost:8080/2_8_2012/jsp/DeleteActivity.jsp?Activity ID="+item+"'\">Delete</button>";
}
</script>
我正在使用$.get
调用获取网格数据。在上面的代码字段中Email
,ActID
实际上是在每次运行时创建的按钮,sendmail
并且deleteact
正在被调用formatter
。显示网格。两个函数中的值也alert(item)
都出现了,即存在各自的值。就像alert(item)
在Delete
我得到ActID
和得到现在我想要alert(item)
在我的页面上的特定(列中的按钮)sendmail
"shan@gmail.com"
button click
Sendmail
http://localhost:8080/2_8_2012/jsp/SendMailReminder.jsp?Send Mail="+item+"'
并button click
在Delete
此页面的列中
http://localhost:8080/2_8_2012/jsp/DeleteActivity.jsp?Activity ID="+item+"'\"
打开从数据库中检索到的项目的值。我还应用了一个rowClick
事件,这也导致了问题,因为当我单击 u 按钮时,我的Rowclick
事件触发而不是按钮单击事件。这该怎么做。我想将点击事件应用于网格上的每个按钮。但是有ID我不知道。请帮我解决这个问题。谢谢..