How do you pass an argument in Telerik's RadListBox OnClientSelectedIndexChanged event? It seems the method you call with this event is
<script type="text/javascript">
someMethod(sender, eventArgs)
{
var ajaxManager = $find("<%= RadAjaxManager.GetCurrent(Page).ClientID %>");
if (ajaxManager != null)
ajaxManager.ajaxRequest("ListBoxIndexChanged"); //I would like my custom argument here
}
</script>
and from the control, I call it as
<telerik:RadListBox ID="radListBox0" runat="server"
OnClientSelectedIndexChanged="someMethod" />
If I try to have someMethod with a different signature, the page just doesn't work...