Hi,
Scenario:
Please check the code below:
This grid shows a checkbox. And this fieldname IsDefaultForeCast and it's datatype is a bit from SQL Server database.
Problem:
When the user clicks on it , I have to show a messagbox to prompt the user if he/she really wants to change it.
What event procedure do I have to add on this xaml code above ? Because there's NO CLICK event when I do the intellisense.
Note:
This field shows a checkbox on the grid. Because the datatype is a bit from the table in SQL Server.
Please let me know..
Thanks,
Chris
Scenario:
Please check the code below:
<telerik:GridViewDataColumn DataMemberBinding="{Binding IsDefaultForeCast}" IsReadOnly="False" Header="Default" >
<telerik:GridViewDataColumn.CellStyle>
<Style TargetType="telerik:GridViewCell">
<Setter Property="HorizontalContentAlignment" Value="Center"/>
</Style>
</telerik:GridViewDataColumn.CellStyle>
</telerik:GridViewDataColumn>
This grid shows a checkbox. And this fieldname IsDefaultForeCast and it's datatype is a bit from SQL Server database.
Problem:
When the user clicks on it , I have to show a messagbox to prompt the user if he/she really wants to change it.
What event procedure do I have to add on this xaml code above ? Because there's NO CLICK event when I do the intellisense.
Note:
This field shows a checkbox on the grid. Because the datatype is a bit from the table in SQL Server.
Please let me know..
Thanks,
Chris