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, andRecommendationstables. - All my tables are pure Glide Tables (not connected to Google Sheets).
Problems Encountered:
- Difficulty Combining Multiple Columns in
QuestionsTable (AllOptionscolumn):
- Goal: I want to combine the values from
OptionA,OptionB,OptionC, andOptionDcolumns in myQuestionstable into a singleAllOptionscolumn (e.g., “Value1,Value2,Value3,Value4”). - Issue with
TemplateColumn: When I set theTypetoTemplateand enter{OptionA},{OptionB},{OptionC},{OptionD}in theTemplatefield, theREPLACEMENTSsection does not appear in the UI. As a result, theAllOptionscolumn literally displays “{OptionA},{OptionB},{OptionC},{OptionD}” instead of the actual combined values. (Screenshot attached) - Issue with
JavascriptColumn: When I set theTypetoJavascriptand try to use code likereturnp1,{p2},p3,{p4}``, theINPUTSsection only showsp1,p2,p3. I cannot addp4or 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
UserResponsestable, even when I select one or multiple rows (e.g., rows whereUser IDisnullfrom 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 IDcolumn type toText. - Reconfigured the
Quizpage using aForm Containercomponent set toAdd new rowand tried to mapUser IDtoCurrent User's Email(which sometimes works, but thenullrows persist due to inability to delete, or other issues). - Confirmed I am signed in as an app editor/user (
Viewing as Steve). - Confirmed
Web Publishingis 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.


