New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
rebind
Method which will force rebind of the RadListView and will refresh its state.
function rebind() |
---|
ASP.NET
<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
<script type="text/javascript">
function RefreshRadListView() {
var listView = $find("<%= RadListView1.ClientID %>");
listView.rebind();
}
</script>
</telerik:RadCodeBlock>