Show a text value instead of row id in an reag-only grid

In the cloud database, a value with the row id is stored.

I have this read only grid, I want to change the row id value instead of another field of the row

In the following read-only grid image, the value of the row id "3" appears in the column "Grupo/Empresa"  I want to change that value to a text to facilitate identification

In this case the row id "3" belongs to "CORFOPYM QUITO"

In the read only grid should appear " "CORFOPYM QUITO" instead of "3"

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Associate Developer

    if your record is related (record relationship) to the table's record that you've shown in the image , then you can choose fields from related record also 
    as in this case you can use the field nombre from related record.
    and if there is no related record then you can get the table's data from query and you can use index along with wherecontains function to get the work done  

Reply
  • 0
    Certified Associate Developer

    if your record is related (record relationship) to the table's record that you've shown in the image , then you can choose fields from related record also 
    as in this case you can use the field nombre from related record.
    and if there is no related record then you can get the table's data from query and you can use index along with wherecontains function to get the work done  

Children