Reltio Connect

 View Only
  • 1.  formatting of INT attribute in Reltio UI

    Reltio Partner
    Posted 07-04-2022 13:06
    We have an INT attribute "IPO Year" which stores year value. While display the value in UI it is showing value in comma in 1000 place. e.g. 2022 as 2,022 . How to change the format to display it properly.


  • 2.  RE: formatting of INT attribute in Reltio UI

    Reltio Employee
    Posted 07-05-2022 12:20
    this can be done by modifying the com.reltio.plugins.entity.json file.  

    Add a section similar to the following:

    {
    "point": "com.reltio.plugins.ui.configuration",
    "id": "com.reltio.plugins.ui.AttributePresentation",
    "configuration": {
    "configuration/entityTypes/Contact/attributes/Education/attributes/YearOfGraduation": {
    "format": "none"
    },
    "configuration/entityTypes/Contact/attributes/YoB": {
    "format": "none"
    },
    "configuration/entityTypes/Contact/attributes/YoD": {
    "format": "none"
    },
    "configuration/entityTypes/HCP/attributes/Education/attributes/YearOfGraduation": {
    "format": "none"
    },
    "configuration/entityTypes/HCP/attributes/YoB": {
    "format": "none"
    },
    "configuration/entityTypes/HCP/attributes/YoD": {
    "format": "none"
    }
    }
    }

    Obviously, you need to change the URI's to match the URI of the attribute(s) you are trying to modify.