diff --git a/fhem/FHEM/01_FHEMWEB.pm b/fhem/FHEM/01_FHEMWEB.pm
index 712ce7598..701f1a5d9 100755
--- a/fhem/FHEM/01_FHEMWEB.pm
+++ b/fhem/FHEM/01_FHEMWEB.pm
@@ -2952,17 +2952,29 @@ FW_htmlEscape($)
webCmd
Colon separated list of commands to be shown in the room overview for a
- certain device. On smallscreen devices only the first value is
- accessible.
- If the first value references a command, for which "set
- device ?" lists a number possible choices (e.g. desired-temp for FHT
- devices), then a select widget will be displayed. If the values are
- "slider,min,step,max", then a javascript driven slider is displayed.
- if the value is "time", then a javascript timepicker is displayed.
- If the command is state, then the value will be used as a command.
- Examples:
+ certain device. Has no effect on smallscreen devices, see the
+ devStateIcon command for an alternative.
+ Example:
attr lamp webCmd on:off:on-for-timer 10
+
+
+
+ The first specified command is looked up in the "set device ?" list
+ (see the setList attribute for dummy devices).
+ If there it contains some known modifiers (semicolon, followed
+ by a comma separated list), then a different widget will be displayed:
+
+ - if the modifier is ":time", then a javascript driven timepicker is
+ displayed.
+ - if the modifier is of the form
+ ":slider,<min>,<step>,<max>", then a javascript
+ driven slider is displayed
+ - else a dropdown with all the modifier values is displayed
+
+ If the command is state, then the value will be used as a command.
+ Examples for the modifier:
+
define d1 dummy
attr d1 webCmd state
attr d1 setList state:on,off