Dojo,
I have a table component that uses a GQI query. I would like to have access to a column as a query row feed while the column is not selected (hidden). Is this possible? Right now the behavior I see is the column is not shown in 'Selected rows' if its not selected in the GQI query.
I don't need the column showing on the table but I need the data.
Hi Wale,
All columns that are retrieved using GQI will be available in the feed. If they are filtered out using a 'select' node, they are not in the query result and thus not in the feed. To achieve your use case, you can hide certain columns in the table by adding them to the 'filter' data. The hidden columns will still be available in the feed of the table.
Nice! Thanks.