Can you output map values in visualforce inline using a string key?'Map key null not found in map' when using apex:pageBlockTableMap of attachment insertionNeed help writing test Apex ClasseNot able to escape quote in visualforce page?(VF) How Do I pull a picklist from a related object as an input field onto a VF page that uses the Standard Controller with extensions?Help with sorting the name from first last to last firstTest Class Variable ErrorDisplaying map in Visualforce - key with List<List<>> valuesHow do Maps get populated when using SOQLhow to display picklist values which is stored in custom settings values based on the condition

Is White controlling this game?

Does the Long March-11 increase its thrust after clearing the launch tower?

Importance of Building Credit Score?

Is it expected that a reader will skip parts of what you write?

Generate basis elements of the Steenrod algebra

How to manually rewind film?

How does an ordinary object become radioactive?

How to hide rifle during medieval town entrance inspection?

What makes Ada the language of choice for the ISS's safety-critical systems?

Should I give professor gift at the beginning of my PhD?

How is water heavier than petrol, even though its molecular weight is less than petrol?

Wooden cooking layout

Medieval flying castle propulsion

You have (3^2 + 2^3 + 2^2) Guesses Left. Figure out the Last one

Did Milano or Benatar approve or comment on their namesake MCU ships?

Is an entry level DSLR going to shoot nice portrait pictures?

What is the purpose of the goat for Azazel, as opposed to conventional offerings?

What is the actual quality of machine translations?

Is a lack of character descriptions a problem?

Why we don’t make use of the t-distribution for constructing a confidence interval for a proportion?

What to do when surprise and a high initiative roll conflict with the narrative?

How to trick the reader into thinking they're following a redshirt instead of the protagonist?

How can I end combat quickly when the outcome is inevitable?

Thread Pool C++ Implementation



Can you output map values in visualforce inline using a string key?


'Map key null not found in map' when using apex:pageBlockTableMap of attachment insertionNeed help writing test Apex ClasseNot able to escape quote in visualforce page?(VF) How Do I pull a picklist from a related object as an input field onto a VF page that uses the Standard Controller with extensions?Help with sorting the name from first last to last firstTest Class Variable ErrorDisplaying map in Visualforce - key with List<List<>> valuesHow do Maps get populated when using SOQLhow to display picklist values which is stored in custom settings values based on the condition






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








4















Can you output a value from a map in a custom extension without or it being in a table? Tried the below and did not work.



example extension:



public without sharing class Example 
public List<Custom_Object__c> records get; set;
public Map<String,Custom_Object__c> map get; set;
public String recId get; set;
public Example(ApexPages.StandardController stdController)
recId=ApexPages.CurrentPage().getparameters().get('id');
records =
[select Name, field1__c,field2__c,field3__c from Custom_Object__c where Id=:recId ];
Map<String, Custom_Object__c> map = new Map<String, Custom_Object__c>();

String key;
for(Custom_Object__c record :records)

if(record.field3__c.contains('foo'))
key = 'foo_'+Name;
else
key = 'bar_'+Name;

if(record!=null)
map.put(key, record);








display values like below in visualforce.



<p>Lorem ipsum dolor <apex:outputText value="!map['foo test'].field1"/>. <br/>
Neque porro quisquam est qui dolorem <apex:outputText value="!map['bar test2'].field2"/>...
</p>









share|improve this question

















  • 1





    What happened i.e. exactly how did it not work?

    – Keith C
    May 22 at 13:34











  • You have a local variable called map in your constructor that hides the map property. Change Map<String, Custom_Object__c> map = new Map... to map = new Map... so you are assigning to the property in the constructor. The pattern you are using does work.

    – Keith C
    May 22 at 13:35












  • Thanks Keith, thats exactly what it was.

    – Thaier Issa
    May 22 at 13:42











  • I've posted that as an answer; accept it and then others won't be distracted thinking you still need an answer.

    – Keith C
    May 22 at 13:48

















4















Can you output a value from a map in a custom extension without or it being in a table? Tried the below and did not work.



example extension:



public without sharing class Example 
public List<Custom_Object__c> records get; set;
public Map<String,Custom_Object__c> map get; set;
public String recId get; set;
public Example(ApexPages.StandardController stdController)
recId=ApexPages.CurrentPage().getparameters().get('id');
records =
[select Name, field1__c,field2__c,field3__c from Custom_Object__c where Id=:recId ];
Map<String, Custom_Object__c> map = new Map<String, Custom_Object__c>();

String key;
for(Custom_Object__c record :records)

if(record.field3__c.contains('foo'))
key = 'foo_'+Name;
else
key = 'bar_'+Name;

if(record!=null)
map.put(key, record);








display values like below in visualforce.



<p>Lorem ipsum dolor <apex:outputText value="!map['foo test'].field1"/>. <br/>
Neque porro quisquam est qui dolorem <apex:outputText value="!map['bar test2'].field2"/>...
</p>









share|improve this question

















  • 1





    What happened i.e. exactly how did it not work?

    – Keith C
    May 22 at 13:34











  • You have a local variable called map in your constructor that hides the map property. Change Map<String, Custom_Object__c> map = new Map... to map = new Map... so you are assigning to the property in the constructor. The pattern you are using does work.

    – Keith C
    May 22 at 13:35












  • Thanks Keith, thats exactly what it was.

    – Thaier Issa
    May 22 at 13:42











  • I've posted that as an answer; accept it and then others won't be distracted thinking you still need an answer.

    – Keith C
    May 22 at 13:48













4












4








4








Can you output a value from a map in a custom extension without or it being in a table? Tried the below and did not work.



example extension:



public without sharing class Example 
public List<Custom_Object__c> records get; set;
public Map<String,Custom_Object__c> map get; set;
public String recId get; set;
public Example(ApexPages.StandardController stdController)
recId=ApexPages.CurrentPage().getparameters().get('id');
records =
[select Name, field1__c,field2__c,field3__c from Custom_Object__c where Id=:recId ];
Map<String, Custom_Object__c> map = new Map<String, Custom_Object__c>();

String key;
for(Custom_Object__c record :records)

if(record.field3__c.contains('foo'))
key = 'foo_'+Name;
else
key = 'bar_'+Name;

if(record!=null)
map.put(key, record);








display values like below in visualforce.



<p>Lorem ipsum dolor <apex:outputText value="!map['foo test'].field1"/>. <br/>
Neque porro quisquam est qui dolorem <apex:outputText value="!map['bar test2'].field2"/>...
</p>









share|improve this question














Can you output a value from a map in a custom extension without or it being in a table? Tried the below and did not work.



example extension:



public without sharing class Example 
public List<Custom_Object__c> records get; set;
public Map<String,Custom_Object__c> map get; set;
public String recId get; set;
public Example(ApexPages.StandardController stdController)
recId=ApexPages.CurrentPage().getparameters().get('id');
records =
[select Name, field1__c,field2__c,field3__c from Custom_Object__c where Id=:recId ];
Map<String, Custom_Object__c> map = new Map<String, Custom_Object__c>();

String key;
for(Custom_Object__c record :records)

if(record.field3__c.contains('foo'))
key = 'foo_'+Name;
else
key = 'bar_'+Name;

if(record!=null)
map.put(key, record);








display values like below in visualforce.



<p>Lorem ipsum dolor <apex:outputText value="!map['foo test'].field1"/>. <br/>
Neque porro quisquam est qui dolorem <apex:outputText value="!map['bar test2'].field2"/>...
</p>






apex visualforce map controller-extension






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked May 22 at 13:19









Thaier IssaThaier Issa

233




233







  • 1





    What happened i.e. exactly how did it not work?

    – Keith C
    May 22 at 13:34











  • You have a local variable called map in your constructor that hides the map property. Change Map<String, Custom_Object__c> map = new Map... to map = new Map... so you are assigning to the property in the constructor. The pattern you are using does work.

    – Keith C
    May 22 at 13:35












  • Thanks Keith, thats exactly what it was.

    – Thaier Issa
    May 22 at 13:42











  • I've posted that as an answer; accept it and then others won't be distracted thinking you still need an answer.

    – Keith C
    May 22 at 13:48












  • 1





    What happened i.e. exactly how did it not work?

    – Keith C
    May 22 at 13:34











  • You have a local variable called map in your constructor that hides the map property. Change Map<String, Custom_Object__c> map = new Map... to map = new Map... so you are assigning to the property in the constructor. The pattern you are using does work.

    – Keith C
    May 22 at 13:35












  • Thanks Keith, thats exactly what it was.

    – Thaier Issa
    May 22 at 13:42











  • I've posted that as an answer; accept it and then others won't be distracted thinking you still need an answer.

    – Keith C
    May 22 at 13:48







1




1





What happened i.e. exactly how did it not work?

– Keith C
May 22 at 13:34





What happened i.e. exactly how did it not work?

– Keith C
May 22 at 13:34













You have a local variable called map in your constructor that hides the map property. Change Map<String, Custom_Object__c> map = new Map... to map = new Map... so you are assigning to the property in the constructor. The pattern you are using does work.

– Keith C
May 22 at 13:35






You have a local variable called map in your constructor that hides the map property. Change Map<String, Custom_Object__c> map = new Map... to map = new Map... so you are assigning to the property in the constructor. The pattern you are using does work.

– Keith C
May 22 at 13:35














Thanks Keith, thats exactly what it was.

– Thaier Issa
May 22 at 13:42





Thanks Keith, thats exactly what it was.

– Thaier Issa
May 22 at 13:42













I've posted that as an answer; accept it and then others won't be distracted thinking you still need an answer.

– Keith C
May 22 at 13:48





I've posted that as an answer; accept it and then others won't be distracted thinking you still need an answer.

– Keith C
May 22 at 13:48










1 Answer
1






active

oldest

votes


















7














You have a local variable called map in your constructor that hides the map property. (See e.g. Variable shadowing for more about that.)



Change:



Map<String, Custom_Object__c> map = new Map<String, Custom_Object__c>();


to:



map = new Map<String, Custom_Object__c>();


so you are assigning to the property in the constructor, not just the local variable.



The pattern you are using - a string keyed map - does work.






share|improve this answer























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "459"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f263318%2fcan-you-output-map-values-in-visualforce-inline-using-a-string-key%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    7














    You have a local variable called map in your constructor that hides the map property. (See e.g. Variable shadowing for more about that.)



    Change:



    Map<String, Custom_Object__c> map = new Map<String, Custom_Object__c>();


    to:



    map = new Map<String, Custom_Object__c>();


    so you are assigning to the property in the constructor, not just the local variable.



    The pattern you are using - a string keyed map - does work.






    share|improve this answer



























      7














      You have a local variable called map in your constructor that hides the map property. (See e.g. Variable shadowing for more about that.)



      Change:



      Map<String, Custom_Object__c> map = new Map<String, Custom_Object__c>();


      to:



      map = new Map<String, Custom_Object__c>();


      so you are assigning to the property in the constructor, not just the local variable.



      The pattern you are using - a string keyed map - does work.






      share|improve this answer

























        7












        7








        7







        You have a local variable called map in your constructor that hides the map property. (See e.g. Variable shadowing for more about that.)



        Change:



        Map<String, Custom_Object__c> map = new Map<String, Custom_Object__c>();


        to:



        map = new Map<String, Custom_Object__c>();


        so you are assigning to the property in the constructor, not just the local variable.



        The pattern you are using - a string keyed map - does work.






        share|improve this answer













        You have a local variable called map in your constructor that hides the map property. (See e.g. Variable shadowing for more about that.)



        Change:



        Map<String, Custom_Object__c> map = new Map<String, Custom_Object__c>();


        to:



        map = new Map<String, Custom_Object__c>();


        so you are assigning to the property in the constructor, not just the local variable.



        The pattern you are using - a string keyed map - does work.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered May 22 at 13:47









        Keith CKeith C

        98.2k11100232




        98.2k11100232



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Salesforce Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f263318%2fcan-you-output-map-values-in-visualforce-inline-using-a-string-key%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

            Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

            What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company