BoldDeskBoldDesk is now live on Product Hunt with a special offer: 50% off all plans. Let's grow together! Support us.
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
<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>