]> source.dussan.org Git - vaadin-framework.git/commitdiff
Migrate UseTooltipsToClarifyFunctions
authorErik Lumme <erik@vaadin.com>
Wed, 13 Sep 2017 07:27:22 +0000 (10:27 +0300)
committerErik Lumme <erik@vaadin.com>
Wed, 13 Sep 2017 07:27:22 +0000 (10:27 +0300)
documentation/articles/UseTooltipsToClarifyFunctions.asciidoc [new file with mode: 0644]
documentation/articles/contents.asciidoc
documentation/articles/img/tooltip.png [new file with mode: 0644]

diff --git a/documentation/articles/UseTooltipsToClarifyFunctions.asciidoc b/documentation/articles/UseTooltipsToClarifyFunctions.asciidoc
new file mode 100644 (file)
index 0000000..af871a6
--- /dev/null
@@ -0,0 +1,32 @@
+[[use-tooltips-to-clarify-functions]]
+Use tooltips to clarify functions
+---------------------------------
+
+Even when clearly labelled, the action performed by a button might not
+be clear enough to the user. This is especially common when space or
+design constraints force you to keep the label very short, or use an
+icon instead of a label. This is where tooltips come in handy.
+
+image:img/tooltip.png[A tooltip]
+
+Tooltips are very easy to add to Vaadin components, although the method
+used to set them is the somewhat misleadingly named *setDescription()*:
+
+[source,java]
+....
+Button btnAttach = new Button();
+btnAttach.setIcon(new ThemeResource("icons/attach.png"));
+btnAttach.setDescription("Attach a file");
+....
+
+Of course, tooltips can be used for all kinds of UI components, not just
+buttons. An input field or even a read-only indicator can benefit from a
+tooltip. While the entire point of tooltips is to convey more
+information that would fit in the component’s caption or label, it’s
+still a good idea of try to keep the tooltip’s text as short as
+possible. Big tooltip balloons get in the way of using the UI and become
+annoying distractions instead of helpful aids.
+
+Keep in mind, however, that tooltips cannot be seen on a touch screen,
+since there is no mouse pointer to hover over the component. For input
+fields, consider using an *input prompt* instead.
index 215ade5dc2509340f856140124bb64926799c6b4..c3d3eebd900d0b7857e5edbd78d6cc06f4515238 100644 (file)
@@ -64,5 +64,6 @@ are great, too.
 - link:ValoExamples.asciidoc[Valo examples]
 - link:ReadOnlyVsDisabledFields.asciidoc[Read-only vs Disabled fields]
 - link:ValoThemeGettingStarted.asciidoc[Valo theme - Getting started]
+- link:UseTooltipsToClarifyFunctions.asciidoc[Use tooltips to clarify functions]
 - link:CreatingAUIExtension.asciidoc[Creating a UI extension]
 - link:CreatingAThemeUsingSass.asciidoc[Creating a theme using Sass]
diff --git a/documentation/articles/img/tooltip.png b/documentation/articles/img/tooltip.png
new file mode 100644 (file)
index 0000000..1c4b135
Binary files /dev/null and b/documentation/articles/img/tooltip.png differ