No, the decision what type you want to use has to be made before it is added to the DOM. So either it has a suffix, or it does not. This is because in html it needs wrapper tags around the input.
Dim txt1 As SKTextBox
txt1.Initialize(Me, "txt1", "txt1")
txt1.AfterText = "km"
txt1.AddToParent("body")
' has to be set after AddToParent
txt1.Style = $"{"width":"100%"}"$
- I can add the suffix by code if the SKTextBox was added in the abstract designer?
- Is it possible to add suffix and keep label, either by code or in abstract designer?
[Donation made, Id. 61F395640G0886608, great BANano!!]
No, the decision what type you want to use has to be made before it is added to the DOM. So either it has a suffix, or it does not. This is because in html it needs wrapper tags around the input.