

| <table style="width: 697px; height: 72px;"> |
| <tbody> |
| <tr> |
| <td style="vertical-align: middle; text-align: center;"> |
| <h2><span style="color: #c00000; text-decoration: underline;">My trip to the Grand Canyon!</span></h2> |
| </td> |
| </tr> |
| <tr> |
| <td> |
| <p style="text-align: center;"> </p> |
| </td> |
| </tr> |
| <tr> |
| <td> |
| <p style="text-align: center;"> </p> |
| </td> |
| </tr> |
| </tbody> |
| </table> |
| <br /> |
| <br /> |

Hi,
I have this Combo
| <telerik:RadComboBox ID="rcbContact" Runat="server" AllowCustomText="True" | |
| EmptyMessage="Nume persoana" EnableLoadOnDemand="True" | |
| HighlightTemplatedItems="True" | |
| ShowToggleImage="False" onitemsrequested="rcbContact_ItemsRequested" LoadingMessage="Incarca..." | |
| ShowDropDownOnTextboxClick="False" DropDownWidth="450px"> | |
| <HeaderTemplate> | |
| <table><tr><td style="width:200px">Nume</td><td style="width:250px">Companie</td></tr></table> | |
| </HeaderTemplate> | |
| <ItemTemplate> | |
| <table><tr><td style="width:200px"><%# DataBinder.Eval(Container.DataItem, "V") %></td><td style="width:250px"><%# DataBinder.Eval(Container.DataItem, "CompanyName") %></td></tr></table> | |
| </ItemTemplate> | |
| </telerik:RadComboBox> |
which seems to have a problem. It's made into an autocomplete box (the number of choices given lower as you type). Notice the items are templated.
The problem is that while that works (as you type the number of displayed persons is getting lower), as soon as the combo loses focus the first match is selected no matter what I had tried to select from the dropdown.
I have another identical combo which has no templates. That one works just fine. Could you please let me know what I'm doing wrong? Mind you I checked - ItemsRequested is not called again so the combo is not being rebinded.
Thanks,
Cris
| RadWindow newwindow = new RadWindow(); | |
| newwindow.ID = "RadWindow10"; | |
| newwindow.Width = 800; | |
| newwindow.Height = 600; | |
| newwindow.NavigateUrl = "Repair.aspx?Propref=" + property.PROPREF; | |
| newwindow.VisibleOnPageLoad = true; | |
| newwindow.Skin = "WebBlue"; | |
| RadWindowManager1.Windows.Add(newwindow); |
| <asp:Button ID="btnRepairs" runat="server" Text="Book Repair" onclick="btnRepairs_click" /> |
Application - Manage App Menu Screens(Presentation)System.NullReferenceException: Object reference not set to an instance of an object.
at Administration_Application_ManageAppMenuScreens.RadTreeView1_HandleDrop(Object sender, RadTreeNodeDragDropEventArgs e) in c:\Redux_Code\net\web\Administration\Application\ManageAppMenuScreens.aspx.cs:line 105
Can any one help me in solving this problem?