- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Tuesday
Hello,
I am trying to setup read-only display of Record Producer questions and answers from question_answer table on my record page in custom built workspace.
I was able to create a API connection to fetch the records via REST. The Data Resource is populated correctly:
However, when I try to use it on Repeater component it is always blank, even though it recognizes the correct size of array to be used. I tried to repeat the default value of Heading just to see if it well, repeats. No luck:
I have tested this on a blank UI Builder page and all is working fine there.
What could be the issue here?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Wednesday
My custom GET method required two arguments: 'table_sys_id' and 'table_name' for querying 'question_answer' table.
The problem was that I binded those arguments to Record Form pills.
The GET method failed since pill contents ('table_sys_id' and 'table_name') were not ready during page load. After adding 'REFRESH - Data resource' handler to 'Record data fetch completed' event on my Record Data Resource the repeater populates correctly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Wednesday
My custom GET method required two arguments: 'table_sys_id' and 'table_name' for querying 'question_answer' table.
The problem was that I binded those arguments to Record Form pills.
The GET method failed since pill contents ('table_sys_id' and 'table_name') were not ready during page load. After adding 'REFRESH - Data resource' handler to 'Record data fetch completed' event on my Record Data Resource the repeater populates correctly.
