Can anyone help me
I have a grid with four bands, in the third band I have 3 columns with dropdowns and in the 4th band I have 4 columns with dropdowns.
I don't know the reason but except the last dropdown in 4th band all are working fine. all the dropdown have 0-5 values. Vlue member and display member are integers only. In the last dropdown also i am getting the dropdown list with all the values but I am unable selet a value from the list,regardless of the value I am selecting it is selecting the first value in the list.
scores.DataSource = dbDataSet;
scores.DisplayMember = "Score";
scores.DataBind();
Thanks
In the past, I've solved dropdown problems by checking:
HTH