Chetan Sanghani
Chetan Sanghani

Reputation: 2111

Row of GridControl Focused on Textbox Value

I have a GridControl of DevExpress. I want the Focus on particular row according the Id which I entered in the textbox above the GridControl.

For example, if I enter 10 in textbox then in the gridCOntrol the row having Id = 10 got focused.

Upvotes: 0

Views: 820

Answers (1)

platon
platon

Reputation: 5340

This can be done using the following code:

    int rowHandle = gridView1.LocateByDisplayText(0, gridView1.Columns["Id"], "10");
    if(rowHandle != GridControl.InvalidRowHandle)
        gridView1.FocusedRowHandle = rowHandle;

Upvotes: 1

Related Questions