Hi,
i'm trying to use the proeprty like in the example of on your site but i have the errror
"Position 87:95. No property, bindable property, or event found for 'DisplayBinding', or mismatching type between value and property. iMioDocPdaEntryCore C:\CMP_Sviluppo\Git\iMioMobile_DocPda\iMioDocPdaEntry\iMioDocPdaEntryCore\Views\DocRigheView.xaml 87
"
here below some pieces of the code :
<ContentPage.Resources>
<ResourceDictionary>
<local:myDataGridStyle x:Key="myGridStyle" />
<localconverter:SfGridTextColumn x:Key="mytextcolumn" />
</ResourceDictionary>
</ContentPage.Resources>
<syncfusion:SfDataGrid.Columns x:TypeArguments="syncfusion:Columns">
<syncfusion:GridTextColumn HeaderText="ARTICOLO" MappingName="IdArticolo" TextAlignment="Start" Width="140"/>
<syncfusion:GridTextColumn HeaderText="DESCRIZIONE" MappingName="RigaDescriz" DisplayBinding="{Binding RigaDescriz,Converter={StaticResource mytextcolumn}}" />
<syncfusion:GridNumericColumn HeaderText="QTA" MappingName="Qta" Width="70" AllowEditing="True" />
</syncfusion:SfDataGrid.Columns>