Hello team!
I would like to refresh the tab after data addition
details: {
Proposition:{
schemaName: "PropositionDetailV2",
filter: {
masterColumn: "Id",
detailColumn: "ServiceInTransRequest"
},
subscriber: function (){
this.updateDetails();
}
}
},
The problem is that the detail appears twice in the grid after I add a record.
Like
Hello Alice!
The tab is refreshed with the help of basic logic. Try to use a code without function "subscriber"
details: {
Proposition:{
schemaName: "PropositionDetailV2",
filter: {
masterColumn: "Id",
detailColumn: "ServiceInTransRequest"
}/*,
subscriber: function (){
this.updateDetails();
}*/
}
},