Hi,
I have a gridview, where one of the columns are defined like this:
Two questions:
1)
<telerik:GridViewDataColumn DataMemberBinding="{Binding ApprovedForRI, Mode=TwoWay}"
Header="ApprovedForRI" Width="Auto" IsReadOnly="False"/>
and it is bound to an object, with property like this:
public override bool ApprovedForRI
{
get
{
return base.ApprovedForRI;
}
set
{
base.ApprovedForRI = value;
OnPropertyChanged("ApprovedForRI");
}
}
What I am trying to do is when I check/uncheck the box on UI in ApprovedForRI column, the "set" should get called, so the PropertyChanged event is fired, but I don't see this happening. What is the right way to achieve this.
2)
It seems like to check/uncheck the box, I need three clicks. first to select the cell, 2nd to select the checkbox, and finally 3rd to check/uncheck. Is there any way to make it single click, once row is selected?
Thanks.
I have a gridview, where one of the columns are defined like this:
Two questions:
1)
<telerik:GridViewDataColumn DataMemberBinding="{Binding ApprovedForRI, Mode=TwoWay}"
Header="ApprovedForRI" Width="Auto" IsReadOnly="False"/>
public override bool ApprovedForRI
{
get
{
return base.ApprovedForRI;
}
set
{
base.ApprovedForRI = value;
OnPropertyChanged("ApprovedForRI");
}
}
2)
It seems like to check/uncheck the box, I need three clicks. first to select the cell, 2nd to select the checkbox, and finally 3rd to check/uncheck. Is there any way to make it single click, once row is selected?
Thanks.