我希望我的程序能够按国家/地区查看某些单词。 因此,选择国家/地区的搜索选项有多种选择,这些选项在jqgrid中动态反映。在数据库中,查询运行良好,我得到了一个正确的列表。 但是,我想用jsondata或某些数据类型将这些列表传递给jqgrid,但我不知道该怎么做。这是我的代码。
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
if (keyData == Keys.Enter && this.dataGridView.IsCurrentCellInEditMode)
{
if (this.dataGridView.CurrentCell.ColumnIndex != this.dataGridView.Columns.Count - 1)
{
//this.BeginInvoke(new MethodInvoker(() =>
//{
this.dataGridView.CurrentCell = this.dataGridView.CurrentRow.Cells[this.dataGridView.CurrentCell.ColumnIndex + 1];
//}));
}
return true;
}
else return base.ProcessCmdKey(ref msg, keyData);
}
拜托,帮帮我