Question
Editing Summary View
I am trying to build a simple application which allows users to log hours worked.
In the summary page, there is a table of logged shifts, and the ID field has a link to a page with details about the shift with the particular ID.
I have an Expression Rule called TST_getTimesheetSubmissions which returns an entity with specified
a!queryFilter(
field: "id",
operator: "="
Currently, in my summary view, I have the following configuration:
rule!TST_TimesheetSubission(
TST_timesheetLog: rule!TST_getTimesheetSubmissions(rv!identifier).data[1],
cancel: null,
readOnly: true
)
The page loads without any error. However, the hyperlink from each ID redirects to the same entity with ID=1.
Can someone help me fetch the appropriate row of data from the table?
Thank you!
