• kleinaItaliener
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 1
    Replies

Hello,

 

i have created with a Formula Field an GoogleMaps Hyperlink:

 

Code: HYPERLINK("http://maps.google.com?q=" & Street1__c & "%20" & CityName__c & "%20" & State & "%20" & PostalCode__c & "%20" & Country__c , IMAGE("/servlet/servlet.FileDownload?file=01530000001hbwB", "Google Map"))

 

The Problem is that, if there is no Adress information the Outputfield will show me an Link:

 

<a href="http://maps.google.com?q=%20%20%20%20" target="_blank"><img src="/servlet/servlet.FileDownload?file=01530000001hbwB" alt="Google Map" border="0"/></a>

 

I would like to show me nothing if there is no Adress Information and if there is any Adress Information i would like to show me the GooleMaps Info.

 

I hope anyone can help me please:)

 

Txs.

 

Cheers

Hello,

 

i have a little Problem with my VF-Page.

I would like to implement some related lists into the VF-Page, until now it works very well.

 

But now i would like to use some other Related List e.g. "Account History"  <apex:relatedList list="AccountHistories" /> or <apex:relatedList list="AccountHistory" /> doesn`t work.

 

Any Ideas or a proposal for solution?

 

Txs. in advanced

 

 

Good evening everybody,

 

i have a problem with my Visual Force Page.

 

I will use an CSS File and Custom FONTS which is included via "Static Resource". 

All Fonts are also included as a Static Resource.

 

But how i can implement my custom fonts on a Visual Force Page?

 

Txs. for any information

 

Cheers

 

 

I am developing a VF page which uses data from several objects and should work as an empty form. As soon as I press the save button, I want to save and link the objects.

 

So, I have my standardController. The datafields of which work fine in my form.

 

Then I created this Controller as an extension and just have an Account from which (in this example) just show the inutField of FirstName:

 

 

public class MatchCheckController {

    public Account account{get; set;}


    public MatchCheckController(ApexPages.StandardController controller) {
           
           account = new Account(           
           FirstName='',
           RecordTypeId='01220000000Pn0EAAS'
           );
           
    }

 

My problem: on my VF page, it does not show the inputFiled.

When I populate the FirstName with any string, this is output at the place where the inputField should be. But not editable and no frame around it.

 

What is the "official" way of creating a empty form with datafields in an extension object?

 

  • October 06, 2010
  • Like
  • 0