This is a migrated thread and some comments may be shown as answers.

Binding Issue in Dock

1 Answer 47 Views
Dock
This is a migrated thread and some comments may be shown as answers.
Ramraj
Top achievements
Rank 1
Ramraj asked on 15 Sep 2015, 10:07 AM

Hi,

I will start with my issues

I have a gridview(gPackageNotes) and txtbox(txtPackageNote) in my winform

Please check my query in the attactment.

 

 

Thanks

Regards

Ramraj

1 Answer, 1 is accepted

Sort by
0
Dimitar
Telerik team
answered on 17 Sep 2015, 01:47 PM
Hello Ramraj,

Thank you for writing.

You can use the CurrentRow property to set the cell value:
private void radTextBox1_TextChanged(object sender, EventArgs e)
{
    if (radGridView1.CurrentRow != null)
    {
        radGridView1.CurrentRow.Cells["Name"].Value = radTextBox1.Text;
    }
}

Please let me know if there is something else I can help you with. 
 
Regards,
Dimitar
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
Dock
Asked by
Ramraj
Top achievements
Rank 1
Answers by
Dimitar
Telerik team
Share this question
or