-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIO-7595 fixed incorrect value for conditionally hidden Checkbox
- Loading branch information
1 parent
eeaff43
commit b3f7e58
Showing
4 changed files
with
82 additions
and
13 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,53 @@ | ||
export default { | ||
title: '7595', | ||
name: '7595', | ||
path: '7595', | ||
type: 'form', | ||
display: 'form', | ||
components:[ | ||
{ | ||
label: 'Checkbox', | ||
tableView: false, | ||
validateWhenHidden: false, | ||
key: 'checkboxBefore', | ||
conditional: { | ||
show: true, | ||
conjunction: 'all', | ||
conditions: [ | ||
{ | ||
component: 'textField', | ||
operator: 'isNotEmpty' | ||
} | ||
] | ||
}, | ||
type: 'checkbox', | ||
input: true | ||
}, | ||
{ | ||
label: 'Text Field', | ||
applyMaskOn: 'change', | ||
tableView: true, | ||
key: 'textField', | ||
type: 'textfield', | ||
input: true | ||
}, | ||
{ | ||
label: 'Checkbox', | ||
tableView: false, | ||
validateWhenHidden: false, | ||
key: 'checkboxAfter', | ||
conditional: { | ||
show: true, | ||
conjunction: 'all', | ||
conditions: [ | ||
{ | ||
component: 'textField', | ||
operator: 'isNotEmpty' | ||
} | ||
] | ||
}, | ||
type: 'checkbox', | ||
input: true | ||
}, | ||
] | ||
}; |
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