Prev: AJAX AutocompleteExtender does not work when type between delimeters
Next: SecurityException AspNetHostingPermission weirdness
From: Peter Larsen [CPH] on 15 Feb 2010 04:56 Hi, I have a ajax page where i want the page to scroll to the bottom of the page on each update. I have tried to use "#bookmarks" and "d.scrollIntoView(true);" scripts, but it doesn't seems to be triggered on updates. Is it possible to fire scripts on ajax updates or how should i fix this scroll problem ?? Thank you in advance Peter
From: Vince Xu [MSFT] on 16 Feb 2010 02:44 Hi, Which Ajax Framework you used? You can call javascript code "document.body.scrollTop = document.body.scrollHeight;" in IE after page updated and call "document.documentElement.scrollTop = document.documentElement.scrollHeight;" in FireFox. With Asp.Net Ajax, you can define pageLoad function to call this script code. function pageLoad(){ if(sys.browser.agent ===sys.browser.internetexplorer) document.body.scrollTop = document.body.scrollHeight; else document.documentElement.scrollTop = document.documentElement.scrollHeight; } -- Sincerely, Vince Xu Microsoft Online Support ================================================== Get notification to my posts through email? Please refer to http://msdn.microsoft.com/en-us/subscriptions/aa948868.aspx#notifications. MSDN Managed Newsgroup support offering is for non-urgent issues where an initial response from the community or a Microsoft Support Engineer within 2 business day is acceptable. Please note that each follow up response may take approximately 2 business days as the support professional working with you may need further investigation to reach the most efficient resolution. The offering is not appropriate for situations that require urgent, real-time or phone-based interactions. Issues of this nature are best handled working with a dedicated Microsoft Support Engineer by contacting Microsoft Customer Support Services (CSS) at http://msdn.microsoft.com/en-us/subscriptions/aa948874.aspx ================================================== -------------------- | From: "Peter Larsen [CPH]" <PeterLarsen(a)community.nospam> | Subject: AJAX | Date: Mon, 15 Feb 2010 10:56:42 +0100 | Lines: 14 | X-Priority: 3 | X-MSMail-Priority: Normal | X-Newsreader: Microsoft Outlook Express 6.00.2900.5843 | X-RFC2646: Format=Flowed; Original | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 | Message-ID: <#2JmuUirKHA.4492(a)TK2MSFTNGP05.phx.gbl> | Newsgroups: microsoft.public.dotnet.framework.aspnet | NNTP-Posting-Host: edge1.bankinvest.dk 131.165.55.123 | Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSFTNGP05.phx.gbl | Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.dotnet.framework.aspnet:96459 | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet | | Hi, | | I have a ajax page where i want the page to scroll to the bottom of the page | on each update. | I have tried to use "#bookmarks" and "d.scrollIntoView(true);" scripts, but | it doesn't seems to be triggered on updates. | | Is it possible to fire scripts on ajax updates or how should i fix this | scroll problem ?? | | Thank you in advance | Peter | | |
From: Vince Xu [MSFT] on 19 Feb 2010 01:09 Hi, Since I didn't see your response. Does it work for you? -- Sincerely, Vince Xu Microsoft Online Support -------------------- | X-Tomcat-ID: 19864759 | References: <#2JmuUirKHA.4492(a)TK2MSFTNGP05.phx.gbl> | MIME-Version: 1.0 | Content-Type: text/plain | Content-Transfer-Encoding: 7bit | From: v-vincex(a)online.microsoft.com (Vince Xu [MSFT]) | Organization: Microsoft | Date: Tue, 16 Feb 2010 07:44:18 GMT | Subject: RE: AJAX | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet | Message-ID: <HAhEhvtrKHA.1412(a)TK2MSFTNGHUB02.phx.gbl> | Newsgroups: microsoft.public.dotnet.framework.aspnet | Lines: 69 | Path: TK2MSFTNGHUB02.phx.gbl | Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.dotnet.framework.aspnet:96485 | NNTP-Posting-Host: tk2tomimport1.phx.gbl 10.230.18.247 | | Hi, | | Which Ajax Framework you used? | | You can call javascript code "document.body.scrollTop = | document.body.scrollHeight;" in IE after page updated and call | "document.documentElement.scrollTop = | document.documentElement.scrollHeight;" in FireFox. | | With Asp.Net Ajax, you can define pageLoad function to call this script | code. | | function pageLoad(){ | if(sys.browser.agent ===sys.browser.internetexplorer) | document.body.scrollTop = document.body.scrollHeight; | else | document.documentElement.scrollTop = | document.documentElement.scrollHeight; | } | | | -- | Sincerely, | | Vince Xu | | Microsoft Online Support | | | ================================================== | Get notification to my posts through email? Please refer to | http://msdn.microsoft.com/en-us/subscriptions/aa948868.aspx#notifications. | | MSDN Managed Newsgroup support offering is for non-urgent issues where an | initial response from the community or a Microsoft Support Engineer within | 2 business day is acceptable. Please note that each follow up response may | take approximately 2 business days as the support professional working with | you may need further investigation to reach the most efficient resolution. | The offering is not appropriate for situations that require urgent, | real-time or phone-based interactions. Issues of this nature are best | handled working with a dedicated Microsoft Support Engineer by contacting | Microsoft Customer Support Services (CSS) at | http://msdn.microsoft.com/en-us/subscriptions/aa948874.aspx | ================================================== | | -------------------- | | From: "Peter Larsen [CPH]" <PeterLarsen(a)community.nospam> | | Subject: AJAX | | Date: Mon, 15 Feb 2010 10:56:42 +0100 | | Lines: 14 | | X-Priority: 3 | | X-MSMail-Priority: Normal | | X-Newsreader: Microsoft Outlook Express 6.00.2900.5843 | | X-RFC2646: Format=Flowed; Original | | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 | | Message-ID: <#2JmuUirKHA.4492(a)TK2MSFTNGP05.phx.gbl> | | Newsgroups: microsoft.public.dotnet.framework.aspnet | | NNTP-Posting-Host: edge1.bankinvest.dk 131.165.55.123 | | Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSFTNGP05.phx.gbl | | Xref: TK2MSFTNGHUB02.phx.gbl | microsoft.public.dotnet.framework.aspnet:96459 | | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet | | | | Hi, | | | | I have a ajax page where i want the page to scroll to the bottom of the | page | | on each update. | | I have tried to use "#bookmarks" and "d.scrollIntoView(true);" scripts, | but | | it doesn't seems to be triggered on updates. | | | | Is it possible to fire scripts on ajax updates or how should i fix this | | scroll problem ?? | | | | Thank you in advance | | Peter | | | | | | | |
From: Peter Larsen [CPH] on 22 Feb 2010 08:48 Hi Vince Xu, Thank you for your reply, Does this work for ajax updates too ?? BR Peter "Vince Xu [MSFT]" <v-vincex(a)online.microsoft.com> wrote in message news:HAhEhvtrKHA.1412(a)TK2MSFTNGHUB02.phx.gbl... > Hi, > > Which Ajax Framework you used? > > You can call javascript code "document.body.scrollTop = > document.body.scrollHeight;" in IE after page updated and call > "document.documentElement.scrollTop = > document.documentElement.scrollHeight;" in FireFox. > > With Asp.Net Ajax, you can define pageLoad function to call this script > code. > > function pageLoad(){ > if(sys.browser.agent ===sys.browser.internetexplorer) > document.body.scrollTop = document.body.scrollHeight; > else > document.documentElement.scrollTop = > document.documentElement.scrollHeight; > } > > > -- > Sincerely, > > Vince Xu > > Microsoft Online Support
From: Peter Larsen [CPH] on 22 Feb 2010 08:49
I appologize for my late response - please see my previous post. /Peter "Vince Xu [MSFT]" <v-vincex(a)online.microsoft.com> wrote in message news:tdSUloSsKHA.5760(a)TK2MSFTNGHUB02.phx.gbl... > Hi, > Since I didn't see your response. Does it work for you? > |