Se this example;
http://oracleanil.blogspot.com/2010/10/restrict-user-to-enter-data-in-caps.html
In order to persist the data you have to add an additional javascript to use the string's function to actually MAKE it Uppercase.
So in order to achieve all the functionality do the css part noted on the link and add the following code too to the Message text box;
MyTextBox.setOnKeyUp( "javascript:this.value=this.value.toUpperCase();");