I'm working with no experience on a Dojo project and don't know which version I'm working on.
There is a textBox for a search form which doesn't accept whitespace. I searched in this documentation for a solution, but no method seems to be applicable. http://dojotoolkit.org/api/dijit/form/TextBox
So my question is: is it possible to accept whitespace in a textBox form or is it just possible with a ValidationTextBox?
me.filterBox = new TextBox({ style: 'margin-bottom: 0', class: 'STQuicksearch', trim: false, intermediateChanges: true, placeHolder: 'Quick search' });
Edit: There is no difference between setting trim false or true. But that's not my problem: I need to put whitespace between multiple words. Trim only removes leading and trailing whitespace!