or
Hi, Our company is in the process of upgrading our application from “Telerik RadControls for ASP.NET Q2 2008” to “ASP.NET AJAX (Version Q2 2011)”. Would anybody know if it is backward compatible and if I will need to make a lot of code changes in order to update to this version of Telerik RadControls. Any other things to look out for during this upgrade?
Our application uses RadAjax, RadCalendar, RadCombobox, RadEditor, RadGrid, RadMenu, RadTreeview, RadWindow and RadInput.
Dim toolBar As RadToolBar = RadFileExplorer1.ToolBar
' Remove commands from the ToolBar control;
Dim i As Integer = 0
While i < toolBar.Items.Count
If toolBar.Items(i).Value = "Delete" Then
toolBar.Items.RemoveAt(i)
' Next item
Continue While
ElseIf toolBar.Items(i).Value = "Upload" Then
toolBar.Items.RemoveAt(i)
' Next item
Continue While
End If
' Next item
i += 1
End While