- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
The below code can check for the Field length and does not allow the user to enter more.
Place it in the Change event of the Numeric Field with java Script as language..
//This is the length you want your NumericField to accept. If you want to add additional leading zeros then you need to set the length accordingly.
var maxLength = 4;
if(xfa.event.newText.length >maxLength)xfa.event.change = "";
Thanks
Srini
Views
Replies
0 Likes
Total Likes