This question is locked. New answers and comments are not allowed.
The textblock inside the tooltip can't find my viewmodel while the one bound to StatusText works fine. How can i point ErrorText to use the datacontext of it's parent?
<telerik:GridViewDataColumn Header="Status" IsReadOnly="True" > <telerik:GridViewDataColumn.CellTemplate> <DataTemplate> <TextBlock Text="{Binding StatusText}" > <ToolTipService.ToolTip> <ToolTip> <ToolTip.ContentTemplate> <DataTemplate> <TextBlock Text="{Binding ErrorText}" Foreground="{Binding StatusForeColor}"/> </DataTemplate> </ToolTip.ContentTemplate> </ToolTip> </ToolTipService.ToolTip> </TextBlock> </DataTemplate> </telerik:GridViewDataColumn.CellTemplate> </telerik:GridViewDataColumn>