New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

rebind

Method which will force rebind of the RadListView and will refresh its state.

function rebind()
<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
    <script type="text/javascript">
        function RefreshRadListView() {
            var listView = $find("<%= RadListView1.ClientID %>");
            listView.rebind();
        } 
    </script>
</telerik:RadCodeBlock>
In this article