I am trying to select an item based off the DataValueField in a web combo. For some odd reason my intellisense won't work so I can't seem to figure out how to pre-select an item in the webcombo (once it has been databound). Help would be much appreciated.
Hi,
I tried this and it works,
cboCustomer.SelectedRow = cboCustomer.FindByValue("AA1234").Row
"AA1234" is the customer id
Do you know where to find javascript reference for webdropdown control?
I ended up using the webdropdown but I'm not sure why I chose that one. I simply select the value in the dropdown off the text.
ddStatus.SelectedValue = row(
"Status")
Can you tell me how to Get and Set the selectedrow using the datavaluefield value. Not by using the row index.
Did you get a answer to this simple question?