Skip to main content
Nintex Community Menu Bar

In Nintex I am trying to limit bad data input by the user using CSS. The data needs to be in all caps, with no spaces. The all caps portion is easy via

.transformToAllCaps {text-transform: uppercase;}.

However, I have no idea how to not allow spaces. Can anyone help me out with this? Is this even possible in CSS? or would I need to use another setting in Nintex?

 

Are you in a SharePoint On-Prem environment?

Are you using Nintex Classic Forms or Responsive Forms? 



 



Does this concern *all* controls on the form, or just a specific few?



 



Which Control Types? Single Line Text, Multi-Line, etc.? 



 



 


CSS doesn't actually change the data - in only changes how it's displayed.  You probably want to use JavaScript to correct the data as it's being typed, or use a workflow to correct it after it's submitted.


Reply