The WebNumericEdit works great, except for one issue.
If you enter 12.90, it removes the trailing zero. It becomes 12.9. Is there anyway around this?
I found this bit in the Javscript igedit_number function, which seems to be what's causing the problem:
line 174: /* if dot,remove trailing 0s */ while(i<iL){if(t.charCodeAt(iL-1)!=48)break;t=t.substring(0,--iL);}
Thanks
Here's a workaround for anyone interested:
WebNumericEdit1.ClientSideEvents.Blur = "WebNumericEdit_Blur"