| RadTreeNode contactNode = new RadTreeNode(); |
| if (contact == currentCustomer.ContactAccounts) |
| contactNode.ImageUrl = "~/images/icons/16/user-business.png"; |
| else |
| contactNode.ImageUrl = "~/images/icons/16/user-worker.png"; |
| contactNode.Text = contact.Name; |
| if (contact.Email.Length > 0 && contact.Fax.Length > 0) |
| { |
| contactNode.ContextMenuID = "contactContextMenuEmailAndFax"; |
| } |
| else if (contact.Email.Length > 0) |
| { |
| contactNode.ContextMenuID = "contactContextMenuEmailOnly"; |
| } |
| ... etc etc etc |
private void rcBox_SelectedIndexChanged(object sender, Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs e) { ((GridFilteringItem)(((RadComboBox)sender).Parent.Parent)).FireCommandEvent("Filter", new Pair()); }var formvalue = HttpContext.Current.Request.Form[rcBox.UniqueID]; if (!string.IsNullOrEmpty(formvalue)) { rcBox.SelectedValue = formvalue; //((GridFilteringItem)(rcBox.Parent.Parent)).FireCommandEvent("Filter", new Pair()); }

Hi
I have a large form (Approx 120 kb) in which i use a combination of Peter Blum's VAM controls, the ordinary aspx controls and telerik controls. In the page I have just upgraded the solution from Promethious 2007-Q3 to the newest version.
I tried to insert the Form Decorator to give the site a more complete look, and therefore I inserted the following line:
<telerik:RadFormDecorator ID="RadFormDecorator1" DecoratedControls="All" Skin="Office2007" runat="server" />
When I open the page, the site looks fine an the Form Decorator works perfectly, but when I try to exit the page, i get the error:
Line: 6
Error: '_events' is null or not an object
If I remove the formdecorator I won't get the above error.
Because the page is very large, it makes it difficult to isolate the error. So any help or clues as to why this might happen would be greatly appreciated.
Thanks in advance
Dennis Cassøe