Hi,
I would like to a static content for one of my columns.
For ex.: the last column - all its rows should be a string value or an image value.
How can I do this or implement this? (sorry I'm a noob in Xamarin, just learning)
<sfgrid:SfDataGrid x:Name = "dataGrid" AutoGenerateColumns="False"
AllowSorting="True" SelectionMode="Single" ColumnSizer="Star" AllowDraggingColumn="True"
AllowResizingColumn="True" ItemsSource="{Binding PagedSource, Source={x:Reference dataPager}}" AllowMultiSorting="True"
GridStyle="{StaticResource dark}" GroupingMode = "Multiple" PullToRefreshCommand="{Binding LoadItemsCommand}" AllowPullToRefresh="True"
SelectionChanged="DataGrid_SelectionChanged">
<sfgrid:SfDataGrid.Columns x:TypeArguments="syncfusion:Columns">
<sfgrid:GridTextColumn HeaderText="X"
MappingName="X" />
<sfgrid:GridTextColumn HeaderText="Y"
MappingName="Y" />
<sfgrid:GridTextColumn HeaderText="Z"
MappingName="Z" />
<sfgrid:GridTextColumn HeaderText="További adatok"
MappingName ="'Test'" /> <--
</sfgrid:SfDataGrid.Columns>
</sfgrid:SfDataGrid>
Thanks advanced,
Istvan