I set up a test project with just one form and one grid (Grid1).
I then copied the following five lines of code from “Help/Language Reference”:
For row=0 to 3
For col=0 to 3
Grid1.setValue(row,col,row*col)
Next
Next
and I pasted them into my test project as the only lines.
But when I deployed my test project to my server and then ran the project as a web app in Google Chrome I got the following error message:
Uncaught TypeError:
Grid1.setValue is not a function.
line 3 column 15
*** Does anyone know why?
Thanks.