selectionChanged

Typemessage
DictionaryDataGrid
LibraryData Grid
Syntax
on selectionChanged pHilitedIndexes, pPreviouslyHilitedIndexes
Associationsdatagrid
Summary

Sent whenever the user changes the selection through some sort of user interaction.

Example
on selectionChanged pHilitedIndex, pPrevHilitedIndex 
	put the dgDataOfIndex [ pHilitedIndex ] of me into theSelDataA 
	uiViewRecordOfID theSelDataA["id"] 
end selectionChanged
Description

Sent whenever the user changes the selection through some sort of user interaction. Handle this message in order to update your UI when the user makes a selection.