我在 RoR 上使用 dhtmlxGrid。我有一个复选框和一个事件“onCheck”,每次选中该复选框时都会激活该事件。
<script type="text/javascript" charset="utf-8">
var grid = new dhtmlXGridObject("grid_here");
grid.setImagePath("/images/dhtmlx/imgs/");
grid.setHeader("Result, PatientID, Approved, Status, Approved Date");
grid.attachHeader("#text_filter,#text_filter,#text_filter,#text_filter,#text_filter");
grid.setColTypes("txt,ed,ch,co,ed");
grid.setColSorting("str,str,str,str,date");
grid.setInitWidths("100,100,*");
grid.setSkin("dhx_skyblue");
grid.init();
grid.load("/approves/data");
grid.attachEvent("onCheck",doOnCheckBoxSelected);
dp = new dataProcessor("/approves/dbaction.xml");
dp.init(grid);
function doOnCheckBoxSelected(rID, cInd, state)
{
if (state=='1')
{alert("date approved");}
}
</script>
当我选中任何复选框时,“警报”世界很好。我现在要做的是在选中复选框时自动更改单元格“状态”和“批准日期”中的值。该复选框称为“已批准”,当人们单击“已批准”复选框时,我希望名为“已批准日期”的单元格自动更新为当前日期,并将“状态”更改为“已批准”。
我不知道如何在网格单元格中存储新值。我该怎么做,可能吗?