Hi,
The standard .net MaintainScrollPositionOnPostback page attribute does not seem to work with RadComboBox. It works fine with the standard asp:dropdownlist. The attached code leaves the user at 'top'.
And this code returns the user to the bottom of the page:
I am using version 2010.2.713.40.
Is this a known issue with RadComboBox?
Thanks.
The standard .net MaintainScrollPositionOnPostback page attribute does not seem to work with RadComboBox. It works fine with the standard asp:dropdownlist. The attached code leaves the user at 'top'.
<%@ Page Language="C#" AutoEventWireup="true" MaintainScrollPositionOnPostback="true" CodeBehind="WebForm7.aspx.cs" Inherits="MyProject.WebForm7" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
runat
=
"server"
>
<
title
></
title
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
div
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
>
</
telerik:RadScriptManager
>
<
p
>top</
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
telerik:RadComboBox
ID
=
"rcb1"
runat
=
"server"
AutoPostBack
=
"true"
>
<
Items
>
<
telerik:RadComboBoxItem
Text
=
"one"
/>
<
telerik:RadComboBoxItem
Text
=
"two"
/>
</
Items
>
</
telerik:RadComboBox
>
</
div
>
</
form
>
</
body
>
</
html
>
And this code returns the user to the bottom of the page:
<%@ Page Language="C#" AutoEventWireup="true" MaintainScrollPositionOnPostback="true" CodeBehind="WebForm7.aspx.cs" Inherits="MyProject.WebForm7" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
runat
=
"server"
>
<
title
></
title
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
div
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
>
</
telerik:RadScriptManager
>
<
p
>top</
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
p
> </
p
>
<
asp:DropDownList
ID
=
"dl1"
runat
=
"server"
AutoPostBack
=
"true"
>
<
asp:ListItem
Text
=
"one"
></
asp:ListItem
>
<
asp:ListItem
Text
=
"two"
></
asp:ListItem
>
</
asp:DropDownList
>
</
div
>
</
form
>
</
body
>
</
html
>
I am using version 2010.2.713.40.
Is this a known issue with RadComboBox?
Thanks.