Лучший способ проверки формы InfoPath - конкретный сценарий

sharepoint.stackexchange https://sharepoint.stackexchange.com//questions/80576

  •  10-12-2019
  •  | 
  •  

Вопрос

У меня есть эта форма InfoPath с 8 полей имени:

Field1
Field2
Field3
Field4
etc.
.

Как мне идти, чтобы проверить форму таким образом, чтобы я не мог иметь дублирующие значения на этих полях.

Я не могу использовать код сзади, потому что у меня нет доступа к центральному администратору, плюс кодовый кодовый раствор для песочницы слишком багги для моего вроде, продолжайте получать случайные ошибки при публикации, используя его.Поэтому я ищу решение без кода.Я использую SharePoint Server 2010.

Спасибо

Это было полезно?

Решение 2

So I end up doing a full compare of all the possible combinations:

8 choose 2 = 28.

Thats a lot of rules. There is another limitation, one item cannot have more than 6 rules (or at least i thought so), looks like this limitation is only on the designer to overcome this limitation do the folloing:

In the Rule condition select expression and you can insert as many comparisiona as you want like:

. = ../my:Field2 or . = ../my:Field3 or . = ../my:Field4 ...etc

Другие советы

If you're wanting to just compare values to make sure there are no duplicates among them, you could create a validation rule on each of the fields that compares the values of each of the affected fields every time the value changes, and throws a validation error if duplicates are found.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с sharepoint.stackexchange
scroll top