XsltListViewWebPart Pagination - Loading On Bottom Of Page

I have an XsltListViewWebPart which houses blog posts on my blog page. Whenever you navigate to the next blog page the next page loads scrolled to the bottom post. This issue only seems to be happening in IE. I believe it might have something to do
with the dvt_startposition but I can't find anything online.

Hi,
According to your post, my understanding is that you wanted the next page loads scrolled to the top post.
The issue is due to the property "MaintainScrollPositionOnPostBack" in the PAGE Class, there are couple options to resolve this.
Here is a similar thread for your reference:
http://sharepoint.stackexchange.com/questions/24345/how-do-you-stop-scroll-position-maintained-after-postback-on-lists
In addition, you
reset the scrollposition for the masterpages. Please refer to:
http://social.technet.microsoft.com/Forums/sharepoint/en-US/f6c5d7e4-a977-49c0-8d31-f619c4bdca7c/controlling-scroll-position-on-postback?forum=sharepointdevelopmentprevious
Best Regards,
Linda Li
Linda Li
TechNet Community Support

Similar Messages

  • XsltListViewWebpart pagination issue

    Hi,
    We are using XsltListView webpart with custom XSL to format dsQueryResponse of a custom List(named "Posts"). That custom list has Attachments. PAgination was default pagination from vwstyles.xsl. Everything works fine on Page Load.i.e., each post
    is displaye dwith corresponding attachment. But, when we use bottom pagination to go to next page or to previosu page...same attachment(attachment in the first post of that page) is repeated for each post...But, when we reload the page...attachemtns are fine
    again.
    Please help us resolve this issue..Why does default pagination behave this way?
    Thanks,
    Neelima.
    Neelima

    Hi Daniel,
    Thank you for responding..XsltListViewWebPart is like this:
    <WebPartPages:XsltListViewWebPart runat="server" AllowHide="True" PartImageSmall="" PartOrder="6" Title="Posts" ManualRefresh="False" ViewGuid="{53B037C2-222F-4431-84D1-7B7EC7768E19}" HelpMode="Modeless" AllowEdit="True" SuppressWebPartChrome="False" ShowWithSampleData="False" ListId="4a92c048-f331-4979-9073-1404e3458d5c" GhostedXslLink="main.xsl" PageSize="-1" UseSQLDataSourcePaging="True" EnableOriginalValue="False" ConnectionID="00000000-0000-0000-0000-000000000000" ExportControlledProperties="False" AutoRefreshInterval="60" ViewContentTypeId="0x" Description="Use the Posts list for posts in this blog." AllowZoneChange="True" ID="g_52262e87_ee8e_4ba3_9241_74c607c9135e" MissingAssembly="Cannot import this Web Part." FrameState="Normal" AllowMinimize="True" Dir="Default" ViewFlag="9" AllowConnect="True" DetailLink="/sales/ProductAnnouncements/Lists/Posts" WebId="76774c76-912f-424b-b62b-603e428a4e64" PartImageLarge="" TitleUrl="/sales/ProductAnnouncements/Lists/Posts" ListName="{4A92C048-F331-4979-9073-1404E3458D5C}" ExportMode="NonSensitiveData" FrameType="Default" DataSourceID="" IsIncludedFilter="" AllowRemove="True" HelpLink="" IsIncluded="True" IsVisible="True" AsyncRefresh="False" AutoRefresh="False" InitialAsyncDataFetch="False" __MarkupType="vsattributemarkup" __WebPartId="{53B037C2-222F-4431-84D1-7B7EC7768E19}" __AllowXSLTEditing="true" __designer:CustomXsl="fldtypes_Ratings.xsl" WebPart="true" Height="" Width=""><DataFields>
    </DataFields>
    <Xsl>
    <xsl:stylesheet xmlns:x="http://www.w3.org/2001/XMLSchema" xmlns:d="http://schemas.microsoft.com/sharepoint/dsp" version="1.0" exclude-result-prefixes="xsl msxsl ddwrt" xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime" xmlns:asp="http://schemas.microsoft.com/ASPNET/20" xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:SharePoint="Microsoft.SharePoint.WebControls" xmlns:ddwrt2="urn:frontpage:internal" xmlns:o="urn:schemas-microsoft-com:office:office">
    <xsl:include href="/_layouts/xsl/main.xsl"/>
    <xsl:include href="/_layouts/xsl/internal.xsl"/>
    <xsl:param name="AllRows" select="/dsQueryResponse/Rows/Row[$EntityName = '' or (position() &gt;= $FirstRow and position() &lt;= $LastRow)]"/>
    <xsl:param name="dvt_apos">&apos;</xsl:param>
    <xsl:template mode="Item" match="Row[../../@ViewStyleID='15']" ddwrt:ghost="" xmlns:ddwrt2="urn:frontpage:internal">
    <xsl:param name="Fields" select="."/>
    <xsl:param name="Collapse" select="."/>
    <xsl:param name="Position" select="1"/>
    <xsl:param name="Last" select="1"/>
    <xsl:variable name="NumColumns" select="count($Fields[not(@Type='Note' or preceding-sibling::*[@Type='Note'])])"/>
    <xsl:variable name="thisNode" select="."/>
    <xsl:if test="../../@ViewStyleID='15'">
    <tr>
    <td class="ms-newsletterline" colspan="{$NumColumns}">
    <img src="/_layouts/images/blank.gif" width="100%" height="4" alt="" />
    </td>
    </tr>
    </xsl:if>
    <tr>
    <xsl:if test="$Position mod 2 = 1">
    <xsl:attribute name="class">ms-alternating ms-newsletteralt</xsl:attribute>
    </xsl:if>
    <xsl:for-each select="$Fields[position() &lt;= $NumColumns]">
    <xsl:apply-templates select="." mode="printTableCellEcbAllowed">
    <xsl:with-param name="thisNode" select="$thisNode"/>
    </xsl:apply-templates>
    </xsl:for-each>
    </tr>
    <xsl:for-each select="$Fields[position() &gt; $NumColumns]">
    <tr>
    <td class = "ms-vb-tall" colspan="{$NumColumns}">
    <xsl:if test="not(@Type='Note')">
    <xsl:value-of select="@DisplayName"/>:
    </xsl:if>
    <xsl:choose>
    <xsl:when test="@Type='User'">
    <xsl:value-of select="$thisNode/@*[name()=concat(current()/@Name, '.span')]" disable-output-escaping="yes"/>
    </xsl:when>
    <xsl:otherwise>
    <xsl:apply-templates select="." mode="PrintFieldWithDisplayFormLink">
    <xsl:with-param name="thisNode" select="$thisNode"/>
    </xsl:apply-templates>
    </xsl:otherwise>
    </xsl:choose>
    </td>
    </tr></xsl:for-each>
    <xsl:if test="$NumColumns &lt; count($Fields)">
    <tr>
    <td id="ItemAttchment{generate-id()}" class="ms-vb-tall">
    <table cellspacing="0" cellpadding="0" border="0">
    <tr>
    <td width="5%"> <span>Liite:</span>
    </td>
    <td>
    <xsl:element name="SharePoint:AttachmentsField">
    <xsl:attribute name="runat">server</xsl:attribute>
    <xsl:attribute name="FieldName">Attachments</xsl:attribute>
    <xsl:attribute name="ControlMode">Display</xsl:attribute>
    <xsl:attribute name="Visible">true</xsl:attribute>
    <xsl:attribute name="ItemId">
    <xsl:value-of select="@ID"/>
    </xsl:attribute>
    </xsl:element>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td colspan="{$NumColumns}">
    <img src="/_layouts/images/blank.gif" width="100%" height="4" alt="" />
    </td>
    </tr>
    <tr>
    <td colspan="{$NumColumns}">
    <img src="/_layouts/images/blank.gif" width="100%" height="4" alt="" />
    </td>
    </tr>
    </xsl:if>
    </xsl:template></xsl:stylesheet></Xsl>
    <ParameterBindings>
    <ParameterBinding Name="dvt_sortdir" Location="Postback;Connection"/>
    <ParameterBinding Name="dvt_sortfield" Location="Postback;Connection"/>
    <ParameterBinding Name="dvt_startposition" Location="Postback" DefaultValue=""/>
    <ParameterBinding Name="dvt_firstrow" Location="Postback;Connection"/>
    <ParameterBinding Name="OpenMenuKeyAccessible" Location="Resource(wss,OpenMenuKeyAccessible)" />
    <ParameterBinding Name="open_menu" Location="Resource(wss,open_menu)" />
    <ParameterBinding Name="select_deselect_all" Location="Resource(wss,select_deselect_all)" />
    <ParameterBinding Name="idPresEnabled" Location="Resource(wss,idPresEnabled)" />
    <ParameterBinding Name="NoAnnouncements" Location="Resource(wss,noXinviewofY_LIST)" />
    <ParameterBinding Name="NoAnnouncementsHowTo" Location="Resource(core,noXinviewofY_DEFAULT)" />
    <ParameterBinding Name="AddNewAnnouncement" Location="Resource(wss,addnewitem)" />
    <ParameterBinding Name="MoreAnnouncements" Location="Resource(wss,moreItemsParen)" />
    </ParameterBindings>
    <XmlDefinition>
    <View Name="{53B037C2-222F-4431-84D1-7B7EC7768E19}" Type="HTML" Hidden="TRUE" TabularView="FALSE" DisplayName="" Url="/sales/ProductAnnouncements/Lists/Categories/Category_copy(1).aspx" Level="1" BaseViewID="1" ContentTypeID="0x" ImageUrl="/_layouts/images/posts.png">
    <Query>
    <OrderBy>
    <FieldRef Name="PublishedDate" Ascending="FALSE"/>
    <FieldRef Name="ID" Ascending="FALSE"/>
    </OrderBy>
    </Query>
    <ViewFields>
    <FieldRef Name="LinkTitleNoMenu"/>
    <FieldRef Name="Body"/>
    <FieldRef Name="PostCategory"/>
    <FieldRef Name="Created"/>
    </ViewFields>
    <RowLimit Paged="TRUE">10</RowLimit>
    <Aggregations Value="Off"/>
    <ViewStyle ID="15"/>
    <Toolbar Type="Standard"/>
    </View>
    </XmlDefinition>
    </WebPartPages:XsltListViewWebPart>
    Many Thanks,
    Neelima.
    Neelima

  • Safari (and other browsers) very slow loading "content rich" web pages

    Hi,
    I'm a very "light" user of my mac, using it basically for surfing the web, uploading pictures and music, etc... and recently any web page that has a lot of content (examples are nfl.com, nba.com, nhl.com, mlb.com, united.com, continental.com) takes a very long time to load (most other web pages load normally). Safari (and Firefox as well) gets to the web page in an instant, but then sits there trying to load content (mostly high res pictures and ads I suppose), which sometimes takes minutes or just never fully downloads the content. I'm connected to the internet via ethernet (high speed cable modem from Time Warner), and they've already come out and verified that everything on their end is fine. I've followed the instructions posted on some of the other similar posts (emptying cache, deleting cookies, disenabling add on's, reseting safari, logging in as another user, etc..), and this has not helped. Since this problem is persistent with both browsers, I'm wondering if this may be an OS issue as opposed to a browser issue. If someone can walk me through a solution (keep in mind that I'm a novice), that would be much appreciated.
    Thanks!
    Message was edited by: Mr. Cady

    HI and welcome....
    Since this problem is persistent with both browsers, I'm wondering if this may be an OS issue as opposed to a browser issue
    Could be.
    Since the problems exist with multiple browsers, login to another user account on your Mac. Try Safari there. If you see the same behavior with Safari there, then follow the instructions here. You will need your install disc. The startup disk may need repairing. Even if Safari is ok in another account, it's still a good idea to check the startup disk. That way you can rule that out.
    Insert your install disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu and launch Disk Utility.
    (In Mac OS X 10.4 or later, you must select your language first from the installer menu)
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.T Status of HDD at the bottom of right panel. It should say: Verified)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    When you are finished with DU, from the Menu Bar, select Utilities/Startup Manager.
    Select your startup disk and click Restart
    While you have the Disk Utility window open, look at the bottom of the window. Where you see Capacity and Available. Make sure there is always 15% free space.
    Carolyn

  • The back, forward, reload and stop buttons are greyed out, the address bar stays blank when I go to a website and firefox loads to a blank page, not my home page. There are 3 users on this computer and it only happens on one user.

    Firefox loads to a blank page, not my home page. When I click on the home button it takes me to the home page. The back, forward, refresh and stop buttons are greyed out and not usable. The webpage I am on does not show up in the address bar. If I type something into the address bar, that address stays there no matter what page I go to next.

    Just upgraded to v4. It did NOT fix the problem.

  • How to make a page that should be inside an iframe load up its parent page?

    Hello all
    Here's my dilema...
    I'm creating a site with page fragments that the user is able to view by having it load into an iframe. So far so good and it's all working perfectly well.
    The problem that I envisage is that, even with no-index robot meta tags, Google et al are almost certain to index these page fragments and proffer them in search results.
    So, my question to you is two-fold:
    1 - how can I make a page fragment load up the parent page should it be selected from a Google search result
    and
    2 - once the parent page is loaded up, how can I then make it load the selected content page into the iframe so that the user sees what (s)he is expecting to see?
    I'm imagining that it will require cookies and scripting, but I'm still at the (very) early stages of learning such stuff, so have no clue whatsoever on how to go about it!
    Any bright ideas / tutorials / sites I can nick code from / complete solutions that I don't have to pay for would be much appreciated.
    Thanks
    Peter

    AFAIK there's no practical way to do what you require.  Sorry.  This is one of the many downsides to Framed sites. It also makes bookmarking and printing pages difficult.  Not to mention user unfriendly from a web accessibility viewpoint.  Re-think your need for Iframes throughout an entire website.   The best websites use one complete page for each topic.  Index, About Us, Contact Us, etc...
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics |  Print | Media Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • I just got the new itunes and I can open itunes and see my music but whenI try and go to the itunes store it just loads to a white page. I try and refresh and go to the home page and nothing happens. I can sign into my account and the tabs for the itunes

    I just got the new itunes and I can open itunes and see my music but whenI try and go to the itunes store it just loads to a white page. I try and refresh and go to the home page and nothing happens. I can sign into my account and the tabs for the itunes store pop up like they normally would when browsing the itunes store but when I click on one of them, it is a blank page. Is there a setting I need to change? Does it just take an extremely long time to load? Please help!!

    Bucktr09:
    I'm having the exact same problem.  I upgraded to the newest version of iTunes on my iMac and ever since I did the store is a blank white screen.  I can get my library content but the store is a no go.  Is there any one out there with a solution?

  • How can I get a video clup to load last on my page?

    Since the entire page is trying to load at once, the quicktime file slows up everything else. If I set it to autoplay it will start playing before the page finishes loading...
    Is there a way I can go into the html file and change the order of how things load and make the video clip load last? thanks
    you can check out my site at:
    http://PrimitiveGroove.com
    thank you!
    Hunter S.

    well, it finishes loading last... b/c it is the biggest file. On some of my other pages the video is 8meg-12meg big and really slows up the load time.
    I have no problem with the length of time that it take the video to load, I just want it to load last so that the rest of the page loads first... As the large quicktime file slows up the loading of the entire page..
    What happens is that on autoplay it starts to play before the rest of the page is finished loading and looks crummy with all the lame iweb graphic squares on the page as it plays.
    So once again is there a way to get it to load last?

  • Say I turn off my Computer or restart it & then I load up Firefox the pages I was previously at loads up. Is there any way to turn this off ?

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    Say I turn off my Computer or restart it & then I load up Firefox the pages I was previously at loads up. This is very very very annoying & I see no options in the settings to turn this off. Is there any way to turn this off ? Even if I just press the X button to close Firefox then later in the day I open Firefox the previous pages always open & it is annoying. I apologize for the language but that is just how ''irritated'' & annoyed I am about this
    <blockquote>language cleaned up by a moderator - eh</blockquote>
    == This happened
    ==
    Every time Firefox opened
    == It started randomly
    ==
    == Troubleshooting information
    ==
    There was nothing in the Troubleshooting about this
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
    == Plugins installed
    ==
    *-Default Plug-in
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *Shockwave Flash 10.1 r53
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *iTunes Detector Plug-in
    *3.0.50106.0
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers

    Hello David.
    Go into ''Tools > Options > General > Startup:When Firefox starts:'' and configure it as you want (probably to show your home page?). This is the very first option that appears in the options screen, but I understand that it may not be very easy to find. Firefox 4 will not include any redesign to the options screen (except possibly it appearing in a tab, rather than in a popup), but you may interested to know that there are plans to redesign the options screen for versions after Firefox 4, to make it easier to use. If you want to know more about the redesign, just ask.
    Anyway, if that doesn't help (it probably does, but just in case), it's possible that you are having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and theme and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.

  • Everytime i open some websites, it displays the page for a while then load to another blank page.

    hai. i need help. and just for heads up, i;m not computer/tech savvy.
    i dont remember when this problem was started (maybe around 2 or 3 months ago) but everytime i opened some sites, the page displayed for a while then it reload itself and shown a blank page. the link is still the same with the link i tried to access, it just keep loading and shown blank page till it stop loading. refreshing the page wont help. usually i need to click 'Back' then while it shown the page i click 'X' to stop the page loading, so i can see the page.
    but if i need to download files, stopping the page wont make me able to downloaded the files since the page didnt fully loaded.
    the websites i encountered this was (so far) :
    - Indowebster (download page)
    - wiki.d-addicts.com (a wikipedia kind of page)
    - photobucket (just encountered this today)
    - and 1 or 2 other sites, i forgot.
    but i can access all those sites just fine with IE. I also able to access it in Mozilla thru my work computer. at first this dint really bother me as i can just click 'stop loading page' or found another download sites for downloading. but as today i experienced it with photobucket 9which as far as i know didnt happened before) it made me worry that soon i would experiencing this with another sites too.
    editted to add info :
    i already clear cache and cookies. also disable all extensions in my add-ons. from some discussion page, many of them found that this was caused by Real-Player. i have uninstalled Real Player and have disabled the Real Player Plugins long before this problem occured. so i dont think Real Player was the caused.

    hi.. actually before i was afraid to update anything other than anti-virus, since i read many people seems updating something and turns out they got malware/virus with it.
    but i have update it to Firefox 21 (the newest version it seems) and didnt encounter any problem again. and hope not. it just the new version disable my orbitdownloader. any suggestion to bring it back? (or should i post new thread?)

  • Passing in movie to load via loadmovie from page

    Hi all,
    My page loads a default swf using SWFObject, which in turn
    loads other swfs containing page content. Using SWFObject, I have
    non Flash content for the default page that loads if the flash
    player is not present.
    I would like to have each flash page replicated as an HTML
    page, passing the flash page to load into the default Flash page.
    For example, if the user visits mysite.com/aboutus.cfm, the
    page should pass in aboutus.swf as the page for default.swf to
    load, or if the user visits mysite.com/services.cfm, then
    services.swf should be passed in to the default.swf movie.
    I have tried the method shown on
    http://blog.deconcept.com/swfobject/,
    using:
    <script type="text/javascript">
    var so = new SWFObject("default.swf",
    "flash", "760", "800", "9", "#FFFFFF");
    so.addParam("wmode", "transparent");
    so.addParam("allowscriptaccess", "samedomain");
    so.addVariable("movieToLoad", "homepage_v1.swf");
    so.write("flash");
    </script>
    but this fails to load the movie "homepage_v1.swf" using the
    following in my default Flash page:
    // LOAD DEFAULT PAGE
    loadMovie(_root.movieToLoad, 10);
    Any advice on where I am going wrong?
    TIA,
    Paul

    Thank you clbeech,
    I think you may have misunderstood me (if I have not
    misunderstood you).
    My reasoning for doing what I am is that each flash page will
    have its own search engine friendly html page, for example
    aboutus.html. All pages will contain an html version of the site
    complete with links, which will be replaced by the swfobject for
    browsers with Flash capabilities.
    So once google (without Flash player) has indexed all my html
    pages, if a user clicks on the google result for about us, the
    aboutus.html page will load, which will then load the default Flash
    movie, passing in a variable telling it to load aboutus.swf as the
    default page. If the user clicks the result for services.html, that
    html page will load, which will again load the same default flash
    page, passing in the variable telling it to load services.swf.
    It all works when hardcoding the swf to load into the first
    frame as outlined in my snippet above, but does not seem to like
    the variable name.
    Any other ideas anyone?
    Thanks,
    Paul

  • Footer no longer stays at bottom of page after update!

    After updating to Muse 3.0, my footer no longer stays at the bottom ofthe page.  The 'footer checkbox' is checked.  After I discovered this, I unchecked the footer box and saved files,  then went back re-checked the footer checkbox, saved the files and uploaded to the site. I saved the site as a different site name, uploaded ALL the files. Checked to makesure the manifest files, css were uploaded.  Still have the same issue.

    To revert to Muse 2.3, remove any installed copies of Muse (using Remove Programs on Windows or the Uninstall Adobe Muse application from Applications/Utilities/Adobe Installers on the Mac). Then install Muse 2.3 from:
    http://labsdownload.adobe.com/pub/adobemuse/builds/muse_2-3_install_ma c.dmg
    http://labsdownload.adobe.com/pub/adobemuse/builds/muse_2-3_install_wi n.exe
    We're actively working to determine the cause of the issues and trying to fix them for our users.
    Regards,
    Sachin

  • Goup footer at bottom of page

    We are working on a report in which we need to print a group footer at the end of each group, in addition the group footer should be at the bottom the page.
    This is an invoice report for the clients, and we need to print the remittance address at the bottom of the page for each client. The problem is to anchor the "Remittance Address" portion at the bottom of the page. If there is not enough space on the first page the footer should move to bottom of next page.
    Remember that the data portion may vary in length, also the header portion can vary in height. In addition there can be more than one client's per report.

    In Report Builder navigate Help -> Quick Tour. This should explain how to add groups etc.

  • Print at Bottom of Page option causing extra page at end of report

    I'm using the option 'Print at Bottom of Page" in Section Expert for some invoices I'm creating.  For some reason it's causing me to have an extra page at the end of the report.  If I unselect this option, the extra page goes away.  I need to be able to have this group footer print at the bottom at the page but not have the extra at the end of the report.  This is the first time I've used this option so maybe I've missed something.  All other sections after the group footer I want printed are suppressed.  Any ideas?

    I guess I didn't have the report footer suppress, I just had it minimized in size.  I suppressed it and it seems to be fine.

  • Can I set a bookmarked link to open in the sidebar AND when a new page is loaded/originates from this page?

    Example: I have Google advanced search bookmarked and set to open in the sidebar. When I submit the search, I'd like it to open in the main view port. Is there a way to make links, POST/GET requests or otherwise any new page loads originating from the page loaded in the sidebar?

    So, if I remove a session var is there a way to test for its existence as well?
    Thanks,
    Chris

  • WDA loading in Light Framework page

    We are running WebDynpro ABAP pages in the EP 7. This works with "normal" and with Light-Framework pages. But we have noticed one thing. While the "fat" EP page requires longer seconds for loading, the loading of the embedded WebDynpro starts already during this time, hence in parallel.
    0 Secs EP page called
    1 Secs WebDypro called
    3 Secs EP pages finished
    6 Secs WebDynpro finished
    With the light framework the WD loads only after the EP pages is loaded
    0 Secs EP called
    2 Secs EP Page finished, WDA starts loading
    7 Secs WDA finished
    Is there a chance to overcome this, so starting the loading already during loading of the EP page. Any hint is appreciated. BTW, it is not about the quantity of 1 secs, this is just an example. Real world examples show this effect more dramatically.
    Edited by: Frank Torst on May 8, 2008 12:06 PM

    Question timed out and closed

Maybe you are looking for

  • "Windows - No Disk" error during sync

    About 1/2 the time when I go to sync my 80gig iPod Classic, I get this error. "Windows - No Disk There is no disk in the drive. Please insert a disk into drive I:. [Cancel] [Try Again] [Continue]" I: is the letter assigned to the ipod. It seems to ha

  • Itunes 10.7 for Windows 7 does not recognize iPod touch 4g

    Anyone having the same problem? I have uninstalled and reinstalled several times and still no iPod recognition by iTunes. Although my computer recognizes it as a camera.iTunes says no program is assciated with difxinst64.exe Has anyone run into this

  • Scroll bar for tabcontrol

    Iam using Tabcontrol in my project.On tabcontrol Iam having lot of controls and indicators.The problem is I cannot see all the controls and indicators on a single screen i.e I should move the tabcontrol up and down.I would like to know wether can I a

  • How to add buttons to a standart program

    Hi experts, It is easy to add a button in a call screen. But i want to add a button in a standart program which doesnt call a screen. For example an alv report. But i want the button near the exit, back buttons. not in the alv. I searched standart pr

  • BADI after saving the billing document

    Hi Experts, Please tell me the BADI name which will be triggered after saving the billing doc Here once the customer billing document will be saved, BADI will update the equipment master. Regards, Sandeep Edited by: Sandeep Ballewar on Jul 1, 2010 11