I've been trying serveral approaches to implement basic breadcrumbs links at the top of my page but failed to get it to work.
Think of my data model as this:
country -> area -> city
I've added a custom action button on the rows of the country view which links to the area view and filters (where) automatically on the country selected by country_id. Now I would like to display the country name at the top of the screen so the user knows which country he has selected. The same should happen from the area view going on to the city table.
Going from country to area all I have is the country_id which is passed to the controller but I don't have the country_name. I've tried storing the country_name in the custom add_action callback but that doesn't work since the add_action callback is called on load and not on click.
Any ideas how I can get this to work without having to code my own application?
Thanks
Jimmy