You need to sign in to do that
Don't have an account?

Access Map<String,Map<String,Integer> in Visualforce without repeat tag
I am trying to access a Map<String,Map<String,Integer> in VF but I dont want to use repeat tag, as I know we can access a Map<String,String> as {!MapVal['Key']} in a page without any error.
but for the Map<String,Map<String,Integer> when I do this {!MapVal['Key']} it through a error as value not found in map. But at lest I should get the inside Map!!
Any Help!!
but for the Map<String,Map<String,Integer> when I do this {!MapVal['Key']} it through a error as value not found in map. But at lest I should get the inside Map!!
Any Help!!
Map<String,Map<String,Integer> mapStr ;
{!mapStr['a']['b']} - where 'a' and 'b' are the key values
All Answers
Map<String,Map<String,Integer> mapStr ;
{!mapStr['a']['b']} - where 'a' and 'b' are the key values
It works perfectly and I have used it several times in my pages.