We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

IsHidden with MultiBinding or IMultiValueConverter

HI How to Pass multi value to converter for Hide column? conditionally hidden column. I have a collection in viewmodel and I want the name of the column in collection to be searched and based on this search, my column will be hidden

Column MappingName As parameter1 and Collection As parameter2: ObservableCollection




<syncfusion:GridNumericColumn NumberDecimalDigits="0" Width="40" HeaderText="press" MappingName="S1.Pressure" >

                                    <syncfusion:GridNumericColumn.IsHidden>

                                        <MultiBinding Converter="{StaticResource HiddenColumnConverter}">


                                          parameter1: S1.Pressure

                                          parameter2: ObservableCollection<MyModel>


                                        </MultiBinding>

                                    </syncfusion:GridNumericColumn.IsHidden>

</syncfusion:GridNumericColumn>



Loader.
Up arrow icon