Is there a way to know if a row is selected in telerik grid? As of Now, I have a function which gives me the selected row value. But It returns undefined if nothing is selected. Hence I want a better way know if a row is selected or not. Is there an inbuild telerik method “isSelected” or something which can tell us if anything is selected in a telerik grid?
function projectGrid_onRowSelect(e) {
rowValue = e.srcElement.innerText;
};
There is no built-in method but you could try next code