-
Notifications
You must be signed in to change notification settings - Fork 3
Advanced Find And Result
PhuocLe edited this page Jul 2, 2024
·
3 revisions
The Advanced Find And Result
control is a combination of the Advanced Find
control and the Advanced Find Result
control
# | Name | Required? | Type | Description |
---|---|---|---|---|
1 |
Type | AdvancedFindAndResult |
Dataverse Dialog Builder AdvancedFindAndResult control |
|
2 |
Logical Name | x |
string |
The logical name of the control |
3 |
Parameter FetchXml (SafeString) | x |
Parameter |
input , FetchXml code use to render subgrid by Advanced Find And Result control |
4 |
Parameter Entity Logical Name (SafeString) | x |
Parameter |
input , Primary entity use by Advanced Find And Result control |
5 |
Rows | x |
int |
How many rows control render |
6 |
Visible | boolean |
show or hide control |
- You
cannot
change the labelView records
- You
cannot
change the columns in subgrid view, it use default by viewAdvanced Find
of the entity - You
cannot
get theselected records
in the subgrid view - If you
dynamic
change the parameterinput
Parameter Entity Logical Name (SafeString)
after the controlrender
, subgridcannot
refresh to correct new entity. You can use the following tips hereby to refresh subgrid
formContext.getControl(`pl_advfind_and_result1`).setVisible(false);
setTimeout(function () {
formContext.getControl(`pl_advfind_and_result1`).setVisible(true);
}, 1000);