Skip to main content
swapnar6405
February 9, 2023
Question

readonlygrid selected row data is not loading into a textfield.

  • February 9, 2023
  • 2 replies
  • 0 views

Hi,

I have a readonly grid and loading the data using RecordType. 

When select any row selected, I am storing into a local variable of specific type.

When I try to load the value of firstname like below, it was not loading any thing into the textfield. Can someone advise what went wrong.

2 replies

konduruc733182
February 9, 2023

Hello swapnar6405,

You cannot index recordType using the .notation. you will have to call the field by the recordType!recordName.Field.

index(yourvariable,recordtType!recordName.field,null). I hope this will do the work.

swapnar6405
February 9, 2023

Thanks Chaitanya.