Summary - I want to tag attachments on a record. Utilizing a custom page. I have watched and RezaDorrani's video, but the client did accept this solution. I wanted to create a new column in the 'notes' table, but that is not allowed. I tried to create a new N:M table to act as a tag/attachment join table, but when trying to patch to this table on the onSubmit, I ran into "x column does not exist, closest column is x" (in many different forms). I decided to utilize the 'Description' attribute within the 'notes' table as my 'Tag'. After the initial submission of a record my attachment tagging functionality worked perfect -
ForAll(
AttachmentsToAddOrEdit,
UpdateIf(
Notes,
Regarding = ExpenseFromIdParam &&
!IsBlank(Regarding) &&
Title = TextBox4.Value,
{
Description: ComboBox6.Selected.Value
}
)
);
Although I need this to work on initial submission as well.
I really want is to bring the default form functionality (being able to add notes directly to a transaction) into my custom page.
(goal to bring this ^ functionality to a custom page)
Any ideas would be greatly appreciated.
Thanks

Report
All responses (
Answers (