or
<telerik:AjaxSetting AjaxControlID="rgdMyGrid"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="rgdMyGrid" /> </UpdatedControls></telerik:AjaxSetting>Public Class AddressBook
Public Property OwnerName As String
Public Property Friends As IList(Of Contact) Public Property Family As IList(Of Contact) Public Property Colleagues As IList(Of Contact)End ClassPublic Class Contact Public Property Address As Address Public Property Name As String Public Property Phone As String Public Property DateOfBirth As Date Public ReadOnly Property Age As Integer Get Return Math.Floor((Date.Now - DateOfBirth).Days / 365) End Get End PropertyEnd ClassPublic Class Address Public Property StreetNumber As Integer Public Property StreetName As String Public Property ZipCode As StringEnd Class
var tree = $find("<%=RadTreeView1.ClientID %>"); tree.style.height = "100px";var tree = document.getElementById("RadTreeView1"); tree.style.height = "100px";