function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
AndyMFAndyMF 

Display Weblink wi

Hi there,
 
we have setup a project__c (extends SObject). This object contains a couple of fields that are computed and updated by a seperate application based on the salesforce java API. The application is invoked by clicking on a weblink.
It updates the fields of the project__c object and redirects to

https://emea.salesforce.com/ID (ID = Identifier of the project__c object)

Now I don't want the updated object to be displayed in some other explorer window, neither I want it to be displayed inside a frame in the same window. I want it to come up in the same explorer window without the salesforce frame around it. This shouldn't be a problem - does salesforce provide this option?

Kind regards,

Andreas Förtsch

adamgadamg
I'm not sure I'm following; you want to display a salesforce record without the surrounding tabs / UI elements?
AndyMFAndyMF

No. I just want a refresh of the site after it's been updated in background. Below you see the screen I'm starting from: the weblink, that calls the background update and the fields to be updated...

http://www.nextevolution.de/images/Sforce1.gif

After calling the weblink I want the object to be refreshed. The refresh works, but...

http://www.nextevolution.de/images/Sforce2.gif

I don't want the headline and the scroll bar showed twice. I hope that makes it a bit easier to understand. :-)

 

Kind regards

Andreas

ScotScot

Check out the thread with this message:

It gives two methods for avoiding the double-frame ...

    > addition of a parameter to the URL

    > use of javascript with "parent.frames.location.replace" to reference the outer frame

I've also used a refresh within javascript (where the return URL is the same as the call to the scontrol itself, and the scontrol is in a separate window) of:

    > window.opener.location.href = window.opener.location.href