1
如何在Telerik的RadListBox OnClientSelectedIndexChanged事件中傳遞參數? 你似乎與此事件調用的方法是如何在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具有不同的簽名,該頁面只是沒有按」 t工作...