Hello,
I’m currently developing a Glide app and am encountering persistent UI and functionality issues within Glide Tables, which are severely hindering my progress.
App Overview:
- My app is a skin type diagnosis quiz that recommends products based on user answers.
- I’m using
Questions
,UserResponses
, andRecommendations
tables. - All my tables are pure Glide Tables (not connected to Google Sheets).
Problems Encountered:
- Difficulty Combining Multiple Columns in
Questions
Table (AllOptions
column):
- Goal: I want to combine the values from
OptionA
,OptionB
,OptionC
, andOptionD
columns in myQuestions
table into a singleAllOptions
column (e.g., “Value1,Value2,Value3,Value4”). - Issue with
Template
Column: When I set theType
toTemplate
and enter{OptionA},{OptionB},{OptionC},{OptionD}
in theTemplate
field, theREPLACEMENTS
section does not appear in the UI. As a result, theAllOptions
column literally displays “{OptionA},{OptionB},{OptionC},{OptionD}” instead of the actual combined values. (Screenshot attached) - Issue with
Javascript
Column: When I set theType
toJavascript
and try to use code likereturn
p1,{p2},p3,{p4}``, theINPUTS
section only showsp1
,p2
,p3
. I cannot addp4
or any further inputs, as the “Add input” button is missing/unavailable. This results in aReferenceError
. (Screenshot attached)
- Inability to Delete Rows in Glide Tables:
- In my
UserResponses
table, even when I select one or multiple rows (e.g., rows whereUser ID
isnull
from previous tests), the “Delete rows” button or trash can icon does not appear anywhere on the screen. This prevents me from cleaning up my data. (Screenshot attached) - Again, this is a pure Glide Table, not connected to Google Sheets.
Steps I’ve Already Taken:
- Refreshed the Glide Builder multiple times (
Ctrl+F5
/Cmd+Shift+R
). - Restarted my web browser.
- Changed the
User ID
column type toText
. - Reconfigured the
Quiz
page using aForm Container
component set toAdd new row
and tried to mapUser ID
toCurrent User's Email
(which sometimes works, but thenull
rows persist due to inability to delete, or other issues). - Confirmed I am signed in as an app editor/user (
Viewing as Steve
). - Confirmed
Web Publishing
is enabled for the app (though this is a separate issue for free plan).
These UI issues are making it extremely difficult to proceed with basic data management and column functionality.
Could you please investigate why these UI elements are missing/not functioning and provide a solution?
Thank you for your time and assistance.