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;
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
add a comment |
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
1
What happened i.e. exactly how did it not work?
– Keith C
May 22 at 13:34
You have a local variable calledmap
in your constructor that hides themap
property. ChangeMap<String, Custom_Object__c> map = new Map...
tomap = 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
add a comment |
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
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
apex visualforce map controller-extension
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 calledmap
in your constructor that hides themap
property. ChangeMap<String, Custom_Object__c> map = new Map...
tomap = 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
add a comment |
1
What happened i.e. exactly how did it not work?
– Keith C
May 22 at 13:34
You have a local variable calledmap
in your constructor that hides themap
property. ChangeMap<String, Custom_Object__c> map = new Map...
tomap = 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
add a comment |
1 Answer
1
active
oldest
votes
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.
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
answered May 22 at 13:47
Keith CKeith C
98.2k11100232
98.2k11100232
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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 themap
property. ChangeMap<String, Custom_Object__c> map = new Map...
tomap = 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