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 に別の署名を付けようとすると、ページが機能しません...