Hi Dojo Community,
I have a table in my low-code app that contains DOM instances that have the ID of a movie on IMDb. I would like to add an action on each row which would open the IMDb page of that movie in a new tab. It would just need to concatenate the 'IMDB ID' field of the selected row with the URL for IMDB.
It should look like this: 'https://www.imdb.com/title/tt1853728' where 'tt1853728' is contained in the DOM instance.
I already tried 'https://www.imdb.com/title/{FEED."Current view"."Table 2"."Selected rows"."Object manager instances"."IMDB ID"}' but that does not seem to work.
When I use "Name" instead of "IMDB ID", I do get forwarded to a link where the name is inserted. So I assume that using fields of the DOM instance is not supported?
Hi Thomas,
The 'Object manager instances' feed indeed only contains some generic properties of DOM instances:
You can achieve your use case by using the 'Query rows' instead. This feed contains all fields that are available in a GQI result.
Thomas, maybe adding, you might also look into the Grid component for the presentation instead of a table. Table is very good and easy to use, but the Grid component is just the next level. So much flexibility on actions and how you want to represent the data.
Ok, thanks! The ‘Query rows’ solution works flawlessly.