Forum
Oluşturmuş olduğum forma telefon formatı ekleyeceğim. Tüm personel mecburi cep numarasını kurallı formatlara göre girebilsin istiyorum. Araştırmalarımda bulmuş olduğumu sizinle paylaşmak istiyorum ama ben uygulamada başarısız oldum yardımcı olabilecek varmı?
1. Add a rule to your textbox control with the following conditions (make sure to select "and" operator):
a. field "does not match pattern" Phone number
b. the expression: string-length(translate(., "()- ", "")) = 10
c. the expression: string-length(translate(., "()- 0123456789", "")) = 0
2. Add action to the rule:
a. Set a field's value
b. Select your textbox field
c. Insert formula for the value (click the fx button):
concat("(", substring(translate(., "()- ", ""), 1, 3), ") ", substring(translate(., "()- ", ""), 4, 3), "-", substring(translate(., "()- ", ""), 7, 4))
Merhabalar. Aşağıdaki dosyayı indirirseniz içerisinde örnek bir infopath çalışma var. Oradan bakarak kullanabilirsiniz.
Teşekkür ederim.