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!
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