I am using an unbound grid. Adding columns and rows programmatically to the grid in a sub procedure I am calling InitializeGrid. At the end of this initialize procedure I have the following code
Thank you
AddHandler RadGridView1.DefaultValuesNeeded, AddressOf radGridView1_DefaultValuesNeeded
This works fine when the user clicks on "Click here to add a new row" message. It assigns the default values as specified in the radGridView1_DefaultValuesNeeded sub. But it doesn't work when I do that programmatically by calling the RadGridView1.Rows.AddNew method. How can I programmatically mimic the user clicking on "Click here to add a new row"?
Thank you