I have a modern table with an edit form being visible when a record is selected within the table. Since ThisItem is not available in a table OnSelect property, I am capturing the Record Title by referencing the Table.Selected.Title and then using another variable to display the form which is using the Title to lookup the record.
Set(
VarSelectedProjectPC,
'Project PC Table'.Selected.Title
);
Set(
VarUpdateProjectPC,
true
)
I have found that any refreshes to the dataset (the same applies to a ClearCollect if I add the dataset to a collection) causes the OnSelect property to trigger. However, it will only trigger the 'Set(VarUpdateProjectPC,true)' because is no particular record being selected - the 'VarSelectedProjectPC' variable remains blank.
I originally had the same function with a classic table but this was crashing my app when scrolling horizontally.
Has anyone encountered this at all and perhaps knows of a workaround?
Thanks in advance.