Subject checkbox in grid
From Charlie <tm@tc.com>
Date Wed, 20 Jul 2022 08:21:09 -0400
Newsgroups dbase.getting-started

Is there a trick to clicking on a check box in a grid and not have to click twice?

Tried this but doesn't work.

function editorControl_onGotFocus()
           is = form.imp_spd1.rowset
           if is.fields["sel"].value = false
              is.fields["sel"].value = true
                else
                   is.fields["sel"].value = false
                endif
           is.save()
                is.refresh()
                form.grid1.setfocus()
      return