diff options
author | Olli Tietäväinen <ollit@vaadin.com> | 2018-04-09 11:47:58 +0300 |
---|---|---|
committer | Ilia Motornyi <elmot@vaadin.com> | 2018-04-09 11:47:58 +0300 |
commit | 64f0e6e059581cf91c9369aacee0c371597cf075 (patch) | |
tree | e7e4854f2a9d4ac8b755d1d6f0c02805c499a744 | |
parent | 357c2f6622fb991ba5ece46cf17c72c4c0b404ea (diff) | |
download | vaadin-framework-64f0e6e059581cf91c9369aacee0c371597cf075.tar.gz vaadin-framework-64f0e6e059581cf91c9369aacee0c371597cf075.zip |
Remove reference to supportsParameters (#10798)
-rw-r--r-- | documentation/advanced/advanced-cdi.asciidoc | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/documentation/advanced/advanced-cdi.asciidoc b/documentation/advanced/advanced-cdi.asciidoc index 81b3178ad6..e3c3b5a679 100644 --- a/documentation/advanced/advanced-cdi.asciidoc +++ b/documentation/advanced/advanced-cdi.asciidoc @@ -563,20 +563,8 @@ possible "View" suffix, making it lower case, and using a dash ("-") to separate words originally denoted by capital letters. Thereby, a view class such as [classname]#MyFunnyView# would have name " [literal]#++my-funny++#". -supportsParameters:: Specifies whether view parameters can be passed to the view as a suffix to the -name in the navigation state, that is, in the form of -[literal]#++viewname+viewparameters++#. The view name is merely a prefix and -there is no separator nor format for the parameters, but those are left for the -view to handle. The parameter support mode is disabled by default. - - -+ -[source, java] ----- -@CDIView(value="myview", supportsParameters=true) ----- + -You could then navigate to the state with a URI fragment such as +You can navigate to a state with a URI fragment such as [literal]#++#!myview/someparameter++# or programmatically with: |