Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!
set the dgprop["show vscrollbar"] of group "Datagrid 1" to false
set the dgProp["scroll when vscrollbar is hidden"] of group "DataGrid 1" to true
The intent being to hide the scroll bar but make scrolling still possible using trackpad (desktop)/screen (iPhone) swipes. It works as desired in development and when I compile the app for macOS. When I try the iPhone version, no scrolling occurs. Am I missing something?
I'm afraid the behavior of the row template is NOT in the message path so your dispatch will go into datanirvana as you have experienced. The behavior of the datagrid and the datagrids script are in the message path however.
So maybe put the "addnewrow" handler into the script of the datagrid group itself?
I have done that and it works perfectly. And in the process I learned there was a difference between the row template behavior script and the data grid script. Nuance