This question is locked. New answers and comments are not allowed.
The is a column in which I set the CellEditTemplate as below.
I want to change the corresponding text of the "txtOthertag" when I click the btnOtherTag.Can you Give me a solution?Thank you.
| <telerikGridView:GridViewDataColumn.CellEditTemplate> |
| <DataTemplate> |
| <Grid> |
| <Grid.ColumnDefinitions> |
| <ColumnDefinition Width="70*"/> |
| <ColumnDefinition Width="30*"/> |
| </Grid.ColumnDefinitions> |
| <Grid.RowDefinitions> |
| <RowDefinition Height="25" /> |
| </Grid.RowDefinitions> |
| <TextBox x:Name="txtOtherTag" Margin="0,0,0,0" Grid.Column="0" Text="{Binding OtherTag, Mode=TwoWay}"/> |
| <Common:IscButton x:Name="btnOtherTag" Click="btnOtherTag_Click" Margin="0,0,0,0" Grid.Column="1" Content="..." ></Common:IscButton> |
| </Grid> |
| </DataTemplate> |
| </telerikGridView:GridViewDataColumn.CellEditTemplate> |
| </telerikGridView:GridViewDataColumn> |