forked from unidoc/unipdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix combo field appearances not being shown * Fix V object type for choice and button fields * Refactor form fill for combo and checkbox fields * Add fill test case for text, combo and checkbox fields * Prevent panic when flattening forms using a nil appearance generator
- Loading branch information
Showing
6 changed files
with
182 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
[ | ||
{ | ||
"name": "Given Name Text Box", | ||
"value": "Jane" | ||
}, | ||
{ | ||
"name": "Family Name Text Box", | ||
"value": "Doe" | ||
}, | ||
{ | ||
"name": "House nr Text Box", | ||
"value": "100" | ||
}, | ||
{ | ||
"name": "Address 2 Text Box", | ||
"value": "Generic Avenue" | ||
}, | ||
{ | ||
"name": "Postcode Text Box", | ||
"value": "11122" | ||
}, | ||
{ | ||
"name": "Country Combo Box", | ||
"value": "France" | ||
}, | ||
{ | ||
"name": "Height Formatted Field", | ||
"value": "175" | ||
}, | ||
{ | ||
"name": "City Text Box", | ||
"value": "Paris" | ||
}, | ||
{ | ||
"name": "Driving License Check Box", | ||
"value": "Yes", | ||
"options": [ | ||
"Yes", | ||
"Off" | ||
] | ||
}, | ||
{ | ||
"name": "Favourite Colour List Box", | ||
"value": "Yellow" | ||
}, | ||
{ | ||
"name": "Language 1 Check Box", | ||
"value": "Yes", | ||
"options": [ | ||
"Yes", | ||
"Off" | ||
] | ||
}, | ||
{ | ||
"name": "Language 2 Check Box", | ||
"value": "Off", | ||
"options": [ | ||
"Yes", | ||
"Off" | ||
] | ||
}, | ||
{ | ||
"name": "Language 3 Check Box", | ||
"value": "Yes", | ||
"options": [ | ||
"Yes", | ||
"Off" | ||
] | ||
}, | ||
{ | ||
"name": "Language 4 Check Box", | ||
"value": "Off", | ||
"options": [ | ||
"Yes", | ||
"Off" | ||
] | ||
}, | ||
{ | ||
"name": "Language 5 Check Box", | ||
"value": "Yes", | ||
"options": [ | ||
"Yes", | ||
"Off" | ||
] | ||
}, | ||
{ | ||
"name": "Gender List Box", | ||
"value": "Woman" | ||
}, | ||
{ | ||
"name": "Address 1 Text Box", | ||
"value": "Generic Street" | ||
} | ||
] |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters