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

updateItem

Method which fires the Update command for the RadListView edited item corresponding to the index passed as an argument in edit mode.

function updateItem(index)
index Integer The edited item corresponding to the index will be updated.
<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
    <script type="text/javascript">
        function UpdateFirstItem() {
            var listView = $find("<%= RadListView1.ClientID %>");
            listView.updateItem(0);
        } 
    </script>
</telerik:RadCodeBlock>
In this article