It really depends what kind of breadcrumb support you want to have.
The widget itself to display breadcrumbs is probably quite simple (List of 
Hyperlink widgets separated by ">"). However the harder part is to populate 
the breadcrumb. 

Basically you distinguish between breadcrumbs which show to the current 
page hierarchy or breadcrumbs which show the navigational history. 
For example if your url encodes the hierarchy of your current page (i.e. 
#product/{id}/detail ) you can read that out and display a breadcrumb (i.e. 
Products > {id] > Details). 
However in case you want to display other information in your breadcrumbs 
(say title of the product) you probably have to access the backend to 
retrieve the information.
Navigational history can also be displayed by using the History mechanism 
of GWT (you could store each navigation event or place change in a HashMap) 
and display it in the breadcrumb. 
Unfortunately I don't know of any widget which supports these functions out 
of the box and I guess creating a generic one is probably not that use 
because it really depends on your use case. 



On Saturday, July 28, 2012 5:51:44 PM UTC+2, vaibhav jain wrote:
>
>
> Hi,
>
>       Can any one help how to implement breadcrumb in GWT2.4?Is there any 
> widget to achieve this?
> Best Regards,
> Vaibhav
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/WtyHS0cU4k0J.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to