I want more than one space to be inserted between two words in a text field.
I have used below code, but it is not working.
a!textField( label: "Approved: 5"& " Closed: 7", readOnly: true() )
I want to display the content in this way. Is there any way to do it.
Discussion posts and replies are publicly visible
You can add extra spaces in labels by using NO-BREAK SPACE character (U+00A0) generated by the key combination Alt+0160 on Windows. It is different from normal space and has a different UNICODE. You can also copy it from here: " ".
Yeah it worked for me. Thanks