Best way to explain this is show where i am at at the moment :
Code: Select all
on mouseUp
put the dgProps["Row Template"] of group "DataGrid 1" into theRowTemplate
set the visible of img "redlight" of theRowTemplate to true
dispatch "ResetList" to group "DataGrid 1"
end mouseUp
But this shows the red light on every row in the grid (form).
I want to target just individual rows in the grid, and show the red light on a row i target.. like:
Code: Select all
on mouseUp
put the dgProps["Row Template"] of (DgLINE[2]) of group "DataGrid 1" into theRowIAmTargeting
set the visible of img "redlight" of theRowIAmTargeting to true
dispatch "ResetList" to group "DataGrid 1"
end mouseUp