Expand my Community achievements bar.

Numeric field with restriction of 8 digits

Avatar

Former Community Member

Dear All.

How should i restrict a numeric field with 8 digits length? (without any default validation message).

Thanks,.

VJ.

1 Reply

Avatar

Level 10

Hi,

you can use a small JavaScript in the fileds change event to limit the length to 8 characters.

if (xfa.event.fullText.length > 8) {

          xfa.event.change = "";

}