This question is locked. New answers and comments are not allowed.
Hi all,
I have a populated combo and I have selected a value. Later in code, I need to obtain the selected textual value that the user sees as opposed to the id.
If I was using a standard select list I'd do something like:
However, with the telerik combo it doesn't recognise options.
How do I get the text of a previously selected combo?
I have a populated combo and I have selected a value. Later in code, I need to obtain the selected textual value that the user sees as opposed to the id.
If I was using a standard select list I'd do something like:
var model = document.getElementById("Dropdown_Model"); var modelVal = model.options[model.selectedIndex].text;How do I get the text of a previously selected combo?