Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing Kubernetes Kit documentation error for V24 #3309

Open
wants to merge 38 commits into
base: latest
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
5484016
chore: Vale 3.0 config update (#3113)
jouni Jan 10, 2024
5a1f1b3
Adds devmode.hostsAllowed property (#3104)
tepi Jan 11, 2024
cead99f
docs: add instructions to disable component tracker (#3095)
mcollovati Jan 11, 2024
d077b74
fix: add note on DefaultI18NProvider available since 24.3 (#3112)
mcollovati Jan 11, 2024
48ac67c
Add navigation examples for hybrid apps (#3101)
mshabarov Jan 11, 2024
a27ab2e
docs: update data-provider article for item index provider (#3089)
tltv Jan 11, 2024
dde0497
Fix typo
tarekoraby Jan 11, 2024
986b04f
chore: update Gradle version
jouni Jan 12, 2024
cc1b2ee
fix: replace hardcoded links with cross references
jouni Jan 12, 2024
8085251
fix: vertical ellipsis → horizontal ellipsis
jouni Jan 12, 2024
a832dbd
fix: set i18n header before modifying for login java example (#5903) …
ugur-vaadin Jan 15, 2024
ea3e103
Update hardcoded vaadin version to 24.3.3 (#3141)
vaadin-bot Jan 16, 2024
fc4d821
Update vaadin version to 24.4.0.alpha1 (#3125)
vaadin-bot Jan 17, 2024
b77a760
fix: missing closing bracket
jouni Jan 18, 2024
4c8800c
docs: add note about AllowInert on RPC calls (#3111)
mcollovati Jan 29, 2024
ab55008
fix: broken include paths for some component descriptions
jouni Feb 6, 2024
41705e3
Update hardcoded vaadin version to 24.3.4 (#3182)
vaadin-bot Feb 12, 2024
cbcc41c
Update hardcoded vaadin version to 24.3.5 (#3189)
vaadin-bot Feb 13, 2024
82b612f
chore: Update a link to Add-on template project (#3192)
mshabarov Feb 14, 2024
b39b5c4
Add discussion id (#3181)
samie Feb 14, 2024
27844c8
docs: Write as draft; Bypassing validators (CP: latest) (#3208)
tepi Feb 23, 2024
ce3c682
docs: ViewAccessChecker has been replaced by NavigationAccessControl …
chkpnt Feb 29, 2024
5cd1410
Update hardcoded vaadin version to 24.3.6 (#3253)
vaadin-bot Mar 4, 2024
cba0c8d
Update hardcoded vaadin version to 24.3.7 (#3284)
vaadin-bot Mar 13, 2024
3a00f66
Update vaadin version to 24.3.7 (#3283)
vaadin-bot Mar 13, 2024
b635d76
Remove duplicated text (#3302)
bwajtr Mar 21, 2024
bdee2eb
Update hardcoded vaadin version to 24.3.8 (#3306)
vaadin-bot Mar 25, 2024
34e6835
Update vaadin version to 24.3.8 (#3305)
vaadin-bot Mar 25, 2024
b7afb7b
chore: escape asterisk (#3292)
oliveryasuna Mar 25, 2024
e4516e5
Fixing documentation error for V24
rodolforfq Mar 25, 2024
977d04c
Fixed yaml config example
rodolforfq Mar 25, 2024
231ed79
docs: Use Gradle toolchain to specify Java version in upgrade guide (…
chkpnt Mar 26, 2024
178b654
Update hardcoded vaadin version to 24.3.9 (#3318)
vaadin-bot Apr 3, 2024
3e5b516
Update vaadin version to 24.3.9 (#3317)
vaadin-bot Apr 3, 2024
b6f6a36
Merge branch 'latest' into k8s-kit-doc-fix-v24
russelljtdyer Apr 8, 2024
a418d35
docs: update references to allowed and blocked packages (#3191) (#3327)
mcollovati Apr 8, 2024
586af1f
fix: fix interface name in navigation docs (CP: latest) (#3319)
mcollovati Apr 8, 2024
fa1c06b
Merge branch 'latest' into k8s-kit-doc-fix-v24
rodolforfq Apr 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: fix interface name in navigation docs (CP: latest) (#3319)
HasRouteParameters interface does not exist, the correct name is HasUrlParameter.

Co-authored-by: Mikhail Shabarov <[email protected]>
  • Loading branch information
mcollovati and mshabarov authored Apr 8, 2024
commit 586af1f4e13f20e6c63308c296e0f55dde7e213e
2 changes: 1 addition & 1 deletion articles/routing/navigation.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ If deep linking is required, the target view must <<updating-url-parameters#,mai

=== Passing Data Using Route Parameters

If your target view implements [interfacename]`HasRouteParameters`, you can submit trivial data to the target view as route parameters.
If your target view implements [interfacename]`HasUrlParameter`, you can submit trivial data to the target view as route parameters.
Compared to directly interacting with the target views Java API, this method automatically maintains the URL, which is beneficial for deep linking.
However, you can't pass more complex objects as route parameters as such, and you always need to consider data safety parameters that end up in URLs.

Expand Down