or
private void radGVInspectionForm_SelectionChanged(object sender, Telerik.Windows.Controls.SelectionChangeEventArgs e) |
{ |
////Get the reference to the selected item |
object mySelectedRow = radGVInspectionForm.SelectedItem; |
////Get the id of the form |
string id = ((InspectionFormDS.InspectionFormTableRow)mySelectedRow).Id; |
////Navigate to the edit form page |
this.NavigationService.Navigate(new DisplayInspectionFormPage(Convert.ToInt32(id))); |
} |
1) Could you please provide an example code for the Treelistview UI Virtualization code? Also, should it be "LINQ-Based Data Engine" always to avail the UI Virtualization feature? If yes then provide an example with LINQ based.
2) UI Virtualization still should work even if my Treelistview control has some editable columns?
<telerik:RadGridView x:Name="radBerthingSlots" |
AutoGenerateColumns="False" |
MaxHeight="500" |
IsEnabled="True" |
ItemsSource="{Binding BerthingSlots}"> |
<telerik:RadGridView.Columns> |
<telerik:GridViewDataColumn Header="High Tide Date" DataMemberBinding="{Binding HighTideDate}" /> |
</telerik:RadGridView.Columns> |
</telerik:RadGridView> |
Hello
I need to implement is Dirty in the grid.
If the value in the cell in changed the grid is dirty.
If the value returns to the original value is not dirty.
I try to do this in the cell edit ended and save the cell that dirty
The problem is that the grid generates the cell again so that the cell is not the same.
How can I solve this?
Best regards
Ehud