So I am binding a data-table to my grid where I have some columns but based on two columns I need to compute a formatted value like in the below example, I want to display a FullName = fname + " " + lname using a converter. My below XAML isn't working. Offcourse I want to do something a little mre complex that just adding strings in my converter.
                    <syncfusion:GridUnBoundColumn.ValueBinding>
                        <MultiBinding Converter="{StaticResource FullNameFormatingConverter}">
                            <MultiBinding.Bindings>
                                <Binding Path="fname" />
                                <Binding Path="lname" />
                            </MultiBinding.Bindings>
                        </MultiBinding>
                    </syncfusion:GridUnBoundColumn.ValueBinding>
How can I achieve the suggested binding in my grid?