How to get field value of selected Row Devexpress GridView?

巧了我就是萌 提交于 2019-12-10 13:43:41

问题


I use a DevexpressGridView to display all TOPIC (id,title,content)

<dx:ASPxGridView ID="gv" runat="server"
OnSelectionChanged="gv_SelectionChanged" >

I have grid_SelectionChanged event:

protected void gv_SelectionChanged(object sender, EventArgs e)
    {

        int id= selected row...???; //how can I get the value of selected row
        string sql = "select * from TOPIC where idTOPIC="+id;
        DataTable topic = l.EXECUTEQUERYSQL(sql);
        TextBox1.Text = topic.Rows[0][1].ToString();
    }

...

It seems gv.SelectedRow method isn't exist in DevGridview.

As recommended, I've tried with FocusedRowIndex method, but I really dont know the right syntax to get the value of selected row.

Help!!!


回答1:


Changing the selection is different from changing the focused row. See the documentation for Selection for the difference between the two.

You can use gv.GetSelectedFieldValues to get the rows which are selected.

var ids = gv.GetSelectedFieldValues("id");
foreach( var id in ids )
    DoSomethingWithObject(id);

You should handle the FocusedRowChanged event if you're interested in the focused row.

You can use the FocusedRowIndex value to index the rows of gv.DataSource, for example:

DataTable ds = (DataTable)gv.DataSource;
var id = ds.Rows[gv.FocusedRowIndex]["id"];

or you can use var id = gv.GetRowValues(gv.FocusedRowIndex, "id").




回答2:


I've found my answere here after a long time searching google: http://www.devexpress.com/Support/Center/Question/Details/Q347704

Use the ASPxGridView.GetSelectedFieldValues method get selected row values on the server side.




回答3:


You can also get selected data row as

int rowHandle = gridView1.FocusedRowHandle;
   if (rowHandle != DevExpress.XtraGrid.GridControl.InvalidRowHandle)
   {
    return this.gridView1.GetDataRow(rowHandle);
   }

This would return DataRow

Please note this is when I am using Devexpress gridControl in WinForms




回答4:


If you want to get only ID field value you can use this

int id =  Convert.ToInt32(gv.GetRowValues(gv.FocusedRowIndex, "ID").ToString());

if you have an object you can use this

Personels selectedPersonel = gv.GetRow(gv.FocusedRowIndex) as Personels;

and get value method is

int ID = selectedPersonel.ID;


来源:https://stackoverflow.com/questions/19206186/how-to-get-field-value-of-selected-row-devexpress-gridview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!