Widgets for controlling nodes
-
I found the ON/OFF switch for sensors tagged with type Status. Are there more of these? For example percent slider for dimmer? Really awkvard to enter value by keyboard. Please advice.
-
@Redferne for now, we do not have any slider for dimmer. You can use a custom widget. However, you can advise some slider widget dimmer as it is used very commonly. Thank you!
-
Has anyone got a slider widget for dimmer or the like yet ?
I was going to try adding a slider myself, but don't know where to put the <head> code to pull in the jquery ?
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery UI Slider - Default functionality</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <link rel="stylesheet" href="/resources/demos/style.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <script> $( function() { $( "#slider" ).slider(); } ); </script> </head> <body> <div id="slider"></div> </body> </html>``` thanks