Hi,

Using SQLexec, I populate a cursor as the resultset

= SQLEXEC(lchandle, 'SELECT top 10 * FROM mytable', 'c_myresults')

I then populate the grid.

lgrid = Lianja.findElementByID("mygrid").grid
lgrid.clear
lgrid.additems('select top 10 * from c_myresults')

In the Section attributes of the grid I have toggled back and forth between the "Double Click to Edit", but no luck.
I also noticed that split view does not work in my case either.
What should I be doing differntly to allow me to edit a value in the grid?

Thanks.

Herb