check-duplicate-values-inside-list
Reactive icon

Check Duplicate Values inside List

Stable version 1.0.0 (Compatible with OutSystems 11)
Uploaded on 08 November 2023 by 
5.0
 (1 rating)
check-duplicate-values-inside-list

Check Duplicate Values inside List

Documentation
1.0.0
  • Install "Check Duplicate Values Inside List" Component to service studio
  • Client action "CheckDuplicateValues" accepts JSON data as input parameter and it returns duplicate value with the help of JavaScript.
  • JSON should be in the simple format. Ex:

[{"Country":"India",

"State":"Mumbai"

},

{"Country":"USA",

"State":"New York"

},

{"Country":"India",

"State":"Gujrat"

}]

  • Currently it will not work for nested JSON. Ex: 

[  {
"country": {
"Code": "",
"Name": "",
"DisplayName": "",
"Description": ""
},
"state": [
{
"Code": "",
"Name": "",
"DisplayName": "",
"Description": ""
      }]