On 12/16/11 5:59 PM, tdtran tran wrote:
>
> Hi,
>
> I have a grid (A) connected to a data source that only displays a subset of 
> the available data from the database. There is a particular column in the db 
> that cannot be displayed in the grid, and needs to be 'manually' drawn
> on another control (in this case another grid (B)).
> Therefore I need a hook to update the other control (grid B), when the user 
> selects/navigates to another row on grid A.
>
> Is there such an event or is there another method of doing this?

grdA.bindEvent(dabo.dEvents.GridCellSelected, self.onGridCellSelected)

def onGridCellSelected(self, evt):
        print "Grid A cell selected: row: %(row)s, col: %(col)s" % evt.EventData

Paul
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
Searchable Archives: http://leafe.com/archives/search/dabo-users
This message: http://leafe.com/archives/byMID/[email protected]

Reply via email to