如何在 Telerik 的 RadListBox OnClientSelectedIndexChanged 事件中传递参数?您使用此事件调用的方法似乎是
<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>
从控制中,我称之为
<telerik:RadListBox ID="radListBox0" runat="server"
OnClientSelectedIndexChanged="someMethod" />
如果我尝试使用不同签名的 someMethod,页面将无法正常工作......