Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1253
CheckboxColumn
posted

Hi,

I have XamlWebgrid with a checkboxcolumn.  How do I capture the value of the checkbox in a cell when the user clicks on it?  Thanks!

  • 12631
    posted

    Well, you don't really describe your specific scenario, but one way to do this would be to listen for the change in the setter of the property the column is bound to.  Or, if the object containing that property implements the INotifyPropertyChanged interface you could listen for the PropertyChanged event.

    Devin