Url changing in vaadin7 navigation

Hi

I use Navigator class in vaadin 7. In that i don’t know how to set the URL for each page(views). Give me some idea to do that.

Could you explain a bit more what you’re trying to do?

When you say

navigator.addView(someString, someView)

then
someString
is used as part of the URL of that view. By default it’s the fragment or “hash” part of the URL as that’s the only part that can be easily changed in javascript without causing a page reload. We plan on supporting HTML5 push state in the future, though.

Thank you. i got that