is there a way to not show the mask and yet get the validation logic like min and max. I’m playing with the grid popup editing and I don’t want the input mask for the quantity and price fields. if I change column for these fields to “text” like this:
{ text: ‘Quantity’, datafield: ‘quantity’, width: 90, cellsalign: ‘right’ },
{ text: ‘Price’, datafield: ‘price’, width: 90, cellsalign: ‘right’, cellsformat: ‘c2’ }
then the input boxes on the popup form don’t show up, even thou the $(“#quantity”).val(dataRecord.quantity) has a value (alert(dataRecord.quantity + ” – ” + dataRecord.price); shows value).
I was thinking that if the popup form allowed them to be text, then I could do the validation in the $(“#Save”).click(function ().
hope this makes sense???