I've been playing around with some DataGrid stuff and have come across something that I'm not sure if it is a bug or expected behavior.
I have a Row Template that contains a Button (checkbox type) and a couple of other fields. I edited the group in the Row Template and tried to edit the script of the Button (I'm trying to think through implementing some Behaviors to use as the Parent Script).
It did not appear that this code was being called (would not activate the breakpoint in the debugger). So I tried a simple script for the button in the Row Template:
Code: Select all
on mouseUp
answer "here"
end mouseUp
I found that I could work with the messages in the Row Behavior. I'm just really trying to wrap my head around the nuances of the DataGrid (which, btw, I think is just wonderful!!!) and trying to determine where/how to implement behaviors for the controls I put into the Row Template.
Thanks in advance for any help/advice anyone has to offer!