Bug? View not showing all columns I've specified
My application has a view called CalorieSpy_data, with a script like so:
list CalorieSpy_data
{
displayname = "CalorieSpy data"
show all rows from Enter_food_data [Date_Time_1 == zoho.currentdate]
(
Date_Time_1 as "Date"
Added_Time as "Added Time"
Meal_1 as "Meal"
Food
caloriesdec as "calories per serving"
fatdec as "fat"
fiberdec as "fiber"
servingsdec as "servings"
Points, display total
Calories, display total
)
filters
(
Meal_1
)
options
(
display rows = 20
)
}
Some of these I added in later, after the view was first created. As you can see, there are several columns to be displayed, but only a few actually are shown (the original set that I specified during the initial design) when the application is accessed. Can someone help? Thanks.