Hi,
I have a webpage with a RadGrid control (with 5 columns) and a button.
column2, column3 and column4 are combo boxes tied up with data. I want to populate the column1 with a value only when I click the button.
I inserted the following piece of code in the button click event to populate the value into the column1 of the radgrid, but did not work.
I have a webpage with a RadGrid control (with 5 columns) and a button.
column2, column3 and column4 are combo boxes tied up with data. I want to populate the column1 with a value only when I click the button.
I inserted the following piece of code in the button click event to populate the value into the column1 of the radgrid, but did not work.
Private Sub btnAssignAccessionNumbers_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnAssignAccessionNumbers.Click
RadGrid1.Items(0).Cells(0).Text =
"M123"
End Sub
Please let me know the correct syntax/procedure to update column cells when I click the button. Also how to modify the radgrid cells programatically.
Thank you,
Mahita