I added a radcombobox to my page and set up a datasource of linqtosql. When I ran it and clicked on the combobox, the dropdown appeared significantly below the combobox. See the attached screen print. Here is the markup excerpt from my aspx page :
I have discovered I can adjust this with the OffsetX and Y properties but what is wrong that caused this in the first place? Surely this isn't the normal position for the control is it?
I am running VS 2008 SP1 on Windows XP SP3 with the 2009.2.826 version of RadControls for ASP.NET AJAX. Does anybody have a solution other than modifying the OffsetX and Y properties until the dropdown moves back up vicinity of the combobox?
Thanks,
Alex
<td> <telerik:RadComboBox ID="rcbExamLocation" Runat="server" DataSourceID="LinqDataSource1" DataTextField="LocCity" DataValueField="LocationID" Width="250px" Skin="WebBlue" OffsetY="0" ExpandAnimation-Type="Linear" ExpandAnimation-Duration="150"> </telerik:RadComboBox> <asp:LinqDataSource ID="LinqDataSource1" runat="server" ContextTypeName="SPPExamRegistrationAlphaDataContext" OrderBy="LocCity, LocAddress" Select="new (LocCity, LocAddress, LocCounty, LocationID)" TableName="viewExamLocations"> </asp:LinqDataSource></td>I have discovered I can adjust this with the OffsetX and Y properties but what is wrong that caused this in the first place? Surely this isn't the normal position for the control is it?
I am running VS 2008 SP1 on Windows XP SP3 with the 2009.2.826 version of RadControls for ASP.NET AJAX. Does anybody have a solution other than modifying the OffsetX and Y properties until the dropdown moves back up vicinity of the combobox?
Thanks,
Alex