I'm trying to do a textTransform on a standard Sharepoint text field. The problem is that all the examples I can find do it via a "onblur". When I add this I get an error on the page, my presumption is that it can't handle that element.
<SharePoint:FormField runat="server" id="ff3{$Pos}" ControlMode="New" FieldName="Product_x0020_Description" __designer:bind="{ddwrt:DataBind('i',concat('ff3',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Product_x0020_Description')}" onblur="upperCase()"/>
function upperCase() {getField('input', 'Product Description').style.textTransform."uppercase"}
Is there any way I can do this without having to add a standard input field?
Thanks in Advance.