Skip to main content
16-Pearl
October 10, 2023
Solved

How to make numeric entry widget non-editable

  • October 10, 2023
  • 1 reply
  • 1509 views

How to make numeric entry widget non-editable?

Best answer by Velkumar

Hi @AP_10343008 

 

.disableNumericEntry .widget-numericentry {
 pointer-events : none;
}

 

Set TabSequence to -1

 

/VR

1 reply

19-Tanzanite
October 11, 2023

Hi @AP_10343008 

 

I think we cannot disable the numeric entry widget.

 

You can try the TextField Widget with Mask value to accept only numbers and disable it in runtime

Velkumar_0-1696997024239.png

 

/VR

 

16-Pearl
October 11, 2023

In TextBoxField, I provided 99.99 to show numbers in percentage, still it is showing NAN when service is executing. 
In Numeric entry widget NAN is not coming. But it is editable. Is there any CSS to make numeric entry widget non-editable or disable mode.

Velkumar19-TanzaniteAnswer
19-Tanzanite
October 11, 2023

Hi @AP_10343008 

 

.disableNumericEntry .widget-numericentry {
 pointer-events : none;
}

 

Set TabSequence to -1

 

/VR