Hi
Bozhidar,
I added the code you supplied to the pageLoad event. However, the "click" event for the list item(s) is not being attached/called. It has to be something with the control being reset? I've also tried adding the "click" function in the PageLoaded event (below) to no avail.
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_pageLoaded(PageLoaded);
function PageLoaded(sender, args) {
$telerik.$(".rsbListItem").on("click", function (e) {
e.preventDefault();
var item = Telerik.Web.UI.RadSearchBox._getTarget(e)._item;
});