我正在开发 DevExpress Gridview,我想获取所选行的数据(当时只能选择一行)。我在服务器端工作,我正在使用 FocusedRowChanged 函数。
编辑: FocusedRowChanged 着火,但什么也没发生,文本框不会改变值
protected void dxgrDepartement_FocusedRowChanged(object sender, EventArgs e)
{
Page.ClientScript.RegisterClientScriptBlock(GetType(), "FetchData", "<script language='javascript'>FetchData('4654654646')</script>");
txtDescription.Text = "patate";
//txtComments.Text = dxgrDepartement.GetRowValues(dxgrDepartement.FocusedRowIndex, "IdDepartment").ToString();
}
和“FetchData:
function FetchData(text) {
//ClearField();
document.getElementById("<%= txtDescription.ClientID %>").value = text.toString();
}