I am new to RadControl. What I want to do is when a user enters a store id on the radcombox to find it and If I can not find it alert the user the store id is not a valid store id using client side javascript. I used the sample javascript with no luck. I get the error "Object doesn't support this property or method". however when I examine combo object I see the method findItemByvalue. what am I doing wrong.
Thanks
function onClientSelectedIndexChanged(sender, eventArgs)
{
var combo = $find("ddlStoreID");
var text = eventArgs.get_item().get_text();
var item = combo.findItemByvalue(text);