Hello,
An artifact is rendered on my grid and I do not know why it appears. Please see the pictures enclosed. As the grid is awaiting data the artifact is positioned as in the first picture. As the grid is filling up with data the artifact starts moving downwards. Please help.
I am modifying the column templates in order to include graphical elements in the table cells. I included an example below. All other columns are templated almost identically.
An artifact is rendered on my grid and I do not know why it appears. Please see the pictures enclosed. As the grid is awaiting data the artifact is positioned as in the first picture. As the grid is filling up with data the artifact starts moving downwards. Please help.
I am modifying the column templates in order to include graphical elements in the table cells. I included an example below. All other columns are templated almost identically.
<telerikGridView:GridViewDataColumn Header="ColumnName" |
Width="170" |
IsFilterable="True" |
DataMemberBinding="{Binding Info, Mode=OneWay}"> |
<telerikGridView:GridViewDataColumn.CellTemplate> |
<DataTemplate> |
<Grid DataContext="{Binding Info, Mode=OneWay}"> |
<Image Margin="2, 0, 2, 0" |
HorizontalAlignment="Left" VerticalAlignment="Center" Stretch="None" |
Source="{Binding Status, Converter={StaticResource infoStatusToIconConverter}}"/> |
<HyperlinkButton HorizontalAlignment="Right" VerticalAlignment="Center" |
Margin="2, 0, 2, 0" |
Content="{Binding Coefficient, StringFormat='p'}" |
NavigateUri="http://www.address_here.com" TargetName="_blank" /> |
</Grid> |
</DataTemplate> |
</telerikGridView:GridViewDataColumn.CellTemplate> |
</telerikGridView:GridViewDataColumn> |