So I've written some javascript code that should display a button when the listbox's OnClientTransferred event fires. It works fine in Chrome and Firefox but not IE (big surprise). I am using an asp:update panel so I'll post THE JavaScript and all of the relevant markup in case that matters.
and the markup
Again, this works in both Chrome and Firefox, but the button won't appear in IE (tested on both 8 and 9).
function showButton(){ var btn = document.getElementById('<%=btnClientCont.ClientID%>'); btn.style.display = "inherit";}and the markup
<div><asp:UpdatePanel ID="updatepanel" runat="server"><ContentTemplate><table><tr><td><telerik:RadListBox runat="server" ID="lstBox" OnClientTransferred="showButton"></telerik:RadListBox></td></tr><tr><td><telerik:RadListBox></telerik:RadListBox></td><tr><td><asp:Button ID="btnReset" OnClick="rebindAll"/></td></tr></ContentTemplate><Triggers><asp:AsyncPostBackTrigger ControlID="btnReset" EventName="Click"/><asp:PostBackTrigger ControlID="btnClientCont"/></Triggers></asp:UpdatePanel></div><div><input type="submit" runat="server" onservercick="btnContinue_Click" id="btnClientCont"/></div>Again, this works in both Chrome and Firefox, but the button won't appear in IE (tested on both 8 and 9).