I need to take action when a checkbox is checked. I'm not using the native "edit mode" of the grid. I'll take action and update the underlying data myself the instant the checkbox is toggled.
Is there an event? "PropertyChanged" doesn't seem to be the ticket.
It sounds exactly what I need, Joe... but I can't find them! Below is the xaml showing my field layout:
<igDP:Field Name="MyCheckBox" Label="Ignore" > <igDP:Field.Settings> <igDP:FieldSettings EditAsType="{x:Type sys:Boolean}" AllowEdit="True" EditorType="{x:Type igEditors:XamCheckEditor}" /> </igDP:Field.Settings></igDP:Field>
Hi,
Is there a way to achieve the same results from codebehind, without relying on XAML?
In my case the xamDataGrid is created run-time.
(My goal would be very similar to what is described here: if the user checks a checkbox from the grid a new dialog should pop up and asks for further instructions.)
Thanks,
Attila
And can you believe this... I just stumbled across a method to string converters together that Josh Smith published and on his blog is a discussion about routed commands that he just did 10 days ago.
http://joshsmithonwpf.wordpress.com/
THANKS!!!!!!!!!!!
It works perfectly and I could not have been more off-base!
I'm so appreciative of your assistance that I am hesitant to even ask, but I'm compelled. Can you provide any insight/tidbits/links/suggestions/whatever so that I can read up on this solution, because it is unfamiliar to me. Clearly, I have a lot to learn.
Thank you again, joe!