I want that the text field only accept numeric values and spaces. What is regular expression for this? I was trying with \\d+$ Thanks
\\d+$
This one should work :
[0-9 ]+