Login
Latest Development Blogs
Forum Topics Post
Browse By Tag
What is the method used to clear the selected item on the webcombo control? When I check out discussions I can only see client side scripting.
Is there a similar function like dropdowns .clear()?
Hello,
There isn’t function in server side to clear selected item, like in client side.However, you could clear selected item in server side by set the value of WebCombo to null or empty string.
Here’s the snippet code how to set the WebCombo’s value to empty string.WebCombo1.Value = "";
Hope this helps. Thank you.Regards,Hans.