This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

2 demical places in temperature setpoint in touch visu
#1
Hi Everyone!
in touch visu we have setpoint with status objects
both have 2 demical places in vis params, step is set to 0.5
but when we click on "+" or "-" button we see only 30 or 30.5 values
we want to see 30.00 and 30.50 values

in html tree  we have this line
<input class="spinner-value" step="any" type="number">

if I will change it to
<input class="spinner-value" step="any" type="float">
value become to 30.00.
How can I save that change LM

Attached Files Thumbnail(s)
   
Reply
#2
Custom JavaScript:
Code:
$(function() {
  $('.touch .spinner-value').attr('type', 'text');
});
Reply
#3
(15.12.2017, 10:38)admin Wrote: Custom JavaScript:
Code:
$(function() {
 $('.touch .spinner-value').attr('type', 'text');
});
THanks!
this situation is bug or feature?

I think setpoint window should use params from "Vis params" button
Reply
#4
This is required for mobile devices to show numeric-only keyboard when this field is focused. Browser controls the number formatting here.
Reply


Forum Jump: