Skip to main content
Known Participant
July 8, 2017
Answered

Is there a way to force space in field?

  • July 8, 2017
  • 2 replies
  • 576 views

Hi,

So I have a field called "striInitDocNum" defaulted to 1 as shown below:

global.DocNumAction =

{

strInitDocNum:"1"

}

The code then inserts a space before this default value:

var dlgInit =

{

"DNum": " " + this.strInitDocNum

}

However, the user may remove this space in the form if they want to set to a different value from 1 to 2, for example:

                                    to

How can I make it so if the user decides to enter a different value than the default, the space in the field is maintained such they cannot delete it? This matters b/c the preview field (not shown) ends up also having a removed space and then it shows as "Exhibit2" instead of "Exhibit 2"

Thanks.

S

This topic has been closed for replies.
Correct answer Joel Geraci

You can't. However, you can check for the existence of the space after they have entered their value and then update the value if necessary.

2 replies

Legend
July 9, 2017

Fix it in the calculate script of the preview field.

suemo22Author
Known Participant
July 9, 2017

Ok, I understand. Thx.

Joel Geraci
Community Expert
Joel GeraciCommunity ExpertCorrect answer
Community Expert
July 9, 2017

You can't. However, you can check for the existence of the space after they have entered their value and then update the value if necessary.