I have a combobox(cbProductItems) on the page with:
right now after the postback, the combobox shows the item that is selected. I want to clear the selection and also make this combox focused so I can start typing.
Is this something that I can do it in method cbProductItems_SelectedIndexChanged? I tried follow codes but doesn't seem to work
Thanks.
OnSelectedIndexChanged="cbProductItems_SelectedIndexChanged"
right now after the postback, the combobox shows the item that is selected. I want to clear the selection and also make this combox focused so I can start typing.
Is this something that I can do it in method cbProductItems_SelectedIndexChanged? I tried follow codes but doesn't seem to work
cbProductItems.ClearSelection();
cbProductItems.DataBind();