Re: Change one data grid row from another

2013-01-30 Thread Peter Haworth
Glad you got it working. Pete lcSQL Software On Wed, Jan 30, 2013 at 2:21 PM, Gerry Orkin wrote: > Peter, thanks - got me headed in the right direction. I'm doing this when > I click a row: > > put the dgIndex of me into selectedRecord > put the dgDataControlOfIndex [sel

Re: Change one data grid row from another

2013-01-30 Thread Gerry Orkin
Peter, thanks - got me headed in the right direction. I'm doing this when I click a row: put the dgIndex of me into selectedRecord put the dgDataControlOfIndex [selectedRecord] of me into selectedRecord That gets me the group name of the row previously clicked. Now, when a new row is clicked I

Re: Change one data grid row from another

2013-01-30 Thread Peter Haworth
Hi Gerry, There may be a more official way to do this but here's one possibility. In your code that shows the group, store the group name for that row off somewhere, possibly a cprop of the datagrid group. In the same code get the cprop contents and hide it. The component controls of a datagrid

Change one data grid row from another

2013-01-30 Thread Gerry Orkin
Hi all While I'm getting better at understanding datagrids I'm still confused about some things, particularly the ways in which we refer to rows and objects in form datagrids. Here's my problem: I show some controls (group "extraButtons") in a row when the user touches the row in a form. When