Hi Dimitar,
Thank you so much. I got it.
However, I don’t mention the dropdownlist cell editors.
What I need is the grid should display country-name instead of country-code (view data) when page is loaded.
For more detail, I changed data as below (…”Berlin”: “GM”, “Boston”: “US”, “London”: “UK”…)
var data = new Array();
data.push({ “Name”: “Population”, “Berlin”: “3560154”, “Boston”: “3406829”, “London”: “8174100” });
data.push({ “Name”: “Country”, “Berlin”: “GM”, “Boston”: “US”, “London”: “UK” });
data.push({ “Name”: “Capital”, “Berlin”: “true”, “Boston”: “false”, “London”: “true” });
At this time, grid will display “GM”, “US”, “UK” ( ref. http://jsfiddle.net/ph80/pz39Lu7a/ )
I want:
When page is loaded, the grid will use countryAdapter to retrieve country-name and then display it on cell (ex: cell will display “Germany”, “United States”, “United Kingdom”)
Hope to find your advice.
Best regards.