私は DevExpress Gridview に取り組んでおり、選択した行のデータを取得したいと考えています (一度に選択できる行は 1 つだけです)。私はサーバー側で作業しており、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();
}