-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExcelValidationTests.ValidationsAndRequiredAndLocked#01.verified.txt
More file actions
78 lines (78 loc) · 1.81 KB
/
Copy pathExcelValidationTests.ValidationsAndRequiredAndLocked#01.verified.txt
File metadata and controls
78 lines (78 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
Sheets: [
{
Name: Sheet1,
Columns: [
{
Name: Name,
Width: 25.0,
ContainsRichText: false,
RequiredHighlight: true
},
{
Name: Status,
Width: 14.0,
ContainsRichText: false,
RequiredHighlight: false,
Validation: {
Type: list,
AllowedValues: [
Active,
Inactive,
Contract
],
AllowBlank: false,
ShowInputMessage: true,
InputMessage: Pick one,
ShowErrorMessage: true,
ErrorTitle: Invalid,
ErrorMessage: Pick a status from the list.,
Range: 2-100
}
},
{
Name: HireDate,
Width: 15.0,
ContainsRichText: false,
NumberFormat: yyyy-mm-dd,
RequiredHighlight: false,
Validation: {
Type: date,
Operator: between,
Min: 2020-01-01,
Max: 2030-12-31,
AllowBlank: true,
ShowInputMessage: false,
ShowErrorMessage: false,
Range: 2-100
}
},
{
Name: Score,
Width: 12.0,
ContainsRichText: false,
Locked: false,
RequiredHighlight: false,
Validation: {
Type: decimal,
Operator: between,
Min: 0,
Max: 100,
AllowBlank: true,
ShowInputMessage: false,
ShowErrorMessage: false,
Range: 2-100
}
},
{
Name: Salary,
Width: 18.0,
ContainsRichText: false,
NumberFormat: $#,##0.00,
RequiredHighlight: false
}
]
}
],
WorksheetCount: 1
}