Tornike Shavishvili
Tornike Shavishvili

Reputation: 1354

Is there any way to maintain window scroll position on postback?

I am using Telerik version 2014.1.403.40 in my ASP.Net web application, with NET Framework 4.

Is there any way to maintain window scroll position on postback? I tiried setting

MaintainScrollPositionOnPostback="True"

but no luck. I also tried various examples to manually scroll the window after postback but still no result.

Upvotes: 0

Views: 1225

Answers (1)

Dewald Henning
Dewald Henning

Reputation: 101

Have you tried setting in code behind in the Page load ?

Page.MaintainScrollPositionOnPostBack =true;

Also, try setting it in the web.config

<page smaintainScrollPositionOnPostBack="true"/>

If all else fails.

Upvotes: 1

Related Questions